* wrap/python/ajax/ltl2tgba.html: Disable the browser spellcheck
on the input box.
This commit is contained in:
parent
34f49a8692
commit
c7f3bd5111
2 changed files with 7 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
2011-01-19 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||||
|
|
||||||
|
* wrap/python/ajax/ltl2tgba.html: Disable the browser spellcheck
|
||||||
|
on the input box.
|
||||||
|
|
||||||
2011-01-18 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
2011-01-18 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||||
|
|
||||||
Preliminary implementation of an ajax-based ltl2tgba translator.
|
Preliminary implementation of an ajax-based ltl2tgba translator.
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,8 @@
|
||||||
|
|
||||||
$("#send").click(updateResults);
|
$("#send").click(updateResults);
|
||||||
$("input,select").change(autoUpdate);
|
$("input,select").change(autoUpdate);
|
||||||
$('input[name="f"]').keydown(function(e){
|
$('input[name="f"]').attr('spellcheck', false)
|
||||||
|
.keydown(function(e){
|
||||||
if (e.keyCode == 13 && !$("#autoupdate").attr("checked"))
|
if (e.keyCode == 13 && !$("#autoupdate").attr("checked"))
|
||||||
updateResults();
|
updateResults();
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue