diff options
author | Aleš Smodiš <aless@guru.si> | 2015-07-17 10:35:42 +0200 |
---|---|---|
committer | Aleš Smodiš <aless@guru.si> | 2015-07-17 10:35:42 +0200 |
commit | 8917c1fc6dc395e9f39bba4ea7e1189f9e61c23d (patch) | |
tree | c0c13a07c32e4bd9bc2e835ab6fbfa1e15f38a3e /js | |
parent | 05776919ecf6184472bfbb6959d141fe66b0b3da (diff) |
Show the sins.py example in the mockup.
Diffstat (limited to 'js')
-rw-r--r-- | js/codeq.js | 2 | ||||
-rw-r--r-- | js/prolog.js | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/js/codeq.js b/js/codeq.js index e867ffd..472cab0 100644 --- a/js/codeq.js +++ b/js/codeq.js @@ -726,7 +726,7 @@ window.phandler = null; // TODO: this is for debug only codeq.system.load({ type: 'text', - url: 'sister.py', + url: 'sins.py', callback: function (data, status, url) { if (!data) return; var info = codeq.parseDefinition(data); diff --git a/js/prolog.js b/js/prolog.js index c405200..28c1b69 100644 --- a/js/prolog.js +++ b/js/prolog.js @@ -190,7 +190,11 @@ }; var jqButtons = $('#block-toolbar button'); - $(jqButtons.get(0)).on('click', function () { handler.processServerHints([{id:'x_must_be_female'}]); }); +// $(jqButtons.get(0)).on('click', function () { handler.processServerHints([{id:'x_must_be_female'}]); }); +// $(jqButtons.get(1)).on('click', function () { handler.processServerHints([{id:'popup_unknown', start: 20, end: 26}]); }); +// $(jqButtons.get(2)).on('click', function () { handler.processServerHints([{id:'drop_down', start: 20, end: 26, choices:['ena', 'dva', 'tri']}]); }); + + $(jqButtons.get(0)).on('click', function () { handler.processServerHints([{id:'list_empty'}]); }); $(jqButtons.get(1)).on('click', function () { handler.processServerHints([{id:'popup_unknown', start: 20, end: 26}]); }); $(jqButtons.get(2)).on('click', function () { handler.processServerHints([{id:'drop_down', start: 20, end: 26, choices:['ena', 'dva', 'tri']}]); }); |