Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
c7f3bd51
Commit
c7f3bd51
authored
Jan 19, 2011
by
Alexandre Duret-Lutz
Browse files
* wrap/python/ajax/ltl2tgba.html: Disable the browser spellcheck
on the input box.
parent
34f49a86
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
c7f3bd51
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>
Preliminary implementation of an ajax-based ltl2tgba translator.
...
...
wrap/python/ajax/ltl2tgba.html
View file @
c7f3bd51
...
...
@@ -96,7 +96,8 @@
$
(
"
#send
"
).
click
(
updateResults
);
$
(
"
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
"
))
updateResults
();
});
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment