@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/en/js/staff-global.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/js/staff-global.js +++ a/koha-tmpl/intranet-tmpl/prog/en/js/staff-global.js @@ -25,7 +25,7 @@ function _(s) { return s; } // dummy function for gettext return false; }); - $('.noEnterSubmit').live("keypress", function(e){ + $("body").on("keypress", ".noEnterSubmit", function(e){ return checkEnter(e); }); }); @@ -91,4 +91,4 @@ function toUC(f) { var x=f.value.toUpperCase(); f.value=x; return true; -} +} --