summaryrefslogtreecommitdiff
path: root/js/codeq/python.js
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@fri.uni-lj.si>2016-03-01 15:30:27 +0100
committerTimotej Lazar <timotej.lazar@fri.uni-lj.si>2016-03-01 15:30:27 +0100
commit8123099f8655981e3f7984830fe8ca0154b7278e (patch)
tree0d5f9b874480e76e249852100931fc3df9bc6e51 /js/codeq/python.js
parent982522b5b9dfc39c10d08129b873aadf77b7293f (diff)
Clear hints immediately when pressing Plan or Test
Diffstat (limited to 'js/codeq/python.js')
-rw-r--r--js/codeq/python.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/js/codeq/python.js b/js/codeq/python.js
index 112d7ff..edf0f46 100644
--- a/js/codeq/python.js
+++ b/js/codeq/python.js
@@ -155,6 +155,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
});
jqBtnPlan.on('click', function () {
+ hinter.clear();
if (!hinter.planNext()) {
jqBtnPlan.prop('disabled', true).blur();
}
@@ -164,6 +165,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
// maintain the illusion
var timeout = 500 + Math.random() * 1000;
+ hinter.clear();
$(editor.getWrapperElement()).addClass('disabled');
editor.setOption('readOnly', 'nocursor');
terminal.inputDisable();