From cc13b9a5e81cb7456d8a76e0cc823d8fbbf0dce2 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 18 Mar 2015 17:21:42 +0100 Subject: [PATCH] Bug 9120: Prevent form submission on adding tags - OPAC At the OPAC, if the user adds tags pressing 'Enter', the page is reloaded and the tags are not added. To prevent that, this patch suggests to block the "press enter" event on the inputs. Test plan: 0/ Confirm the bad behavior, without this patch. 1/ Apply this patch and confirm nothing happen on pressing enter when the focus is on the add tag input (At the opac, on the result view). --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt index 2d7ccf6..ec40189 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt @@ -486,7 +486,7 @@ Add tag @@ -919,6 +919,10 @@ $(document).ready(function(){ }); [% END %] +$("input.newtag").on('keydown', function(e){ + if (e.keyCode == 13) { e.preventDefault(); } +}); + }); //]]> -- 2.1.0