Skip to content

Commit 7606747

Browse files
committed
Makes server configurable again
1 parent d973396 commit 7606747

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assets/javascripts/gtt_print.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ $(function() {
22
if ($('form.print_box').length > 0) {
33
var server = $('form.print_box').attr('action').replace(/\/?$/, '/');
44

5-
$.getJSON("https://print.***REMOVED***/print/apps.json", function (data) {
5+
$.getJSON(server + "print/apps.json", function (data) {
66
$.each(data, function(key, value) {
77
// "default" profile does not really work for some reason
88
if (value != "default") {

0 commit comments

Comments
 (0)