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 0575224 commit 309ccc6Copy full SHA for 309ccc6
assets/javascripts/gtt_print.js
@@ -10,8 +10,14 @@ $(function() {
10
});
11
}
12
13
- $(document).on('click', '.print_box input[type=button]', function(e){
14
- console.log('TODO: submit print');
+ $(document).on('click', '.print_box input[type=button]', function (e) {
+
15
+ var config = $('form.print_box select').val();
16
17
+ $.getJSON(server + "print/" + config + "/capabilities.json", function (data) {
18
+ console.log(data);
19
+ });
20
21
return false;
22
23
0 commit comments