This website works better with JavaScript.
Home
Explore
Help
Sign In
mh
/
mhsw-espurna
Watch
1
Star
0
Fork
0
Code
Releases
0
Activity
Browse Source
Prevent pressing ENTER on dbgcmd input to download config
rfm69
Xose Pérez
6 years ago
parent
448ce2ccb9
commit
f43137daf0
3 changed files
with
2788 additions
and
2789 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
BIN
code/espurna/data/index.html.gz
+2787
-2788
code/espurna/static/index.html.gz.h
+1
-1
code/html/custom.js
BIN
code/espurna/data/index.html.gz
View File
+ 2787
- 2788
code/espurna/static/index.html.gz.h
File diff suppressed because it is too large
View File
+ 1
- 1
code/html/custom.js
View File
@ -79,7 +79,7 @@ $.fn.enterKey = function (fnc) {
$
(
this
)
.
keypress
(
function
(
ev
)
{
var
keycode
=
parseInt
(
ev
.
keyCode
?
ev
.
keyCode
:
ev
.
which
,
10
)
;
if
(
13
===
keycode
)
{
fnc
.
call
(
this
,
ev
)
;
return
fnc
.
call
(
this
,
ev
)
;
}
}
)
;
}
)
;
Write
Preview
Loading…
Cancel
Save