We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 309ccc6 commit 8a07fe0Copy full SHA for 8a07fe0
assets/javascripts/gtt_print.js
@@ -4,8 +4,11 @@ $(function() {
4
if (server) {
5
$.getJSON(server + "print/apps.json", function (data) {
6
$.each(data, function(key, value) {
7
- var option = $("<option></option>").attr("value",value).text(value);
8
- $('form.print_box select').append(option);
+ // "default" profile does not really work for some reason
+ if (value != "default") {
9
+ var option = $("<option></option>").attr("value",value).text(value);
10
+ $('form.print_box select').append(option);
11
+ }
12
});
13
14
}
0 commit comments