Browse Source

Prevent pressing ENTER on dbgcmd input to download config

rfm69
Xose Pérez 6 years ago
parent
commit
f43137daf0
3 changed files with 2788 additions and 2789 deletions
  1. BIN
      code/espurna/data/index.html.gz
  2. +2787
    -2788
      code/espurna/static/index.html.gz.h
  3. +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);
}
});
});


Loading…
Cancel
Save