From 3ef524d806caf990d6c7c3f64020af53545e849a Mon Sep 17 00:00:00 2001 From: alecpl Date: Mon, 22 Aug 2011 12:57:03 +0000 Subject: - Prevent from form submit with Enter key in file input fields in Internet Explorer --- program/js/app.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'program') diff --git a/program/js/app.js b/program/js/app.js index 808adc575..bbb14e7ad 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -402,6 +402,10 @@ function rcube_webmail() break; } + // prevent from form submit with Enter key in file input fields + if (bw.ie) + $('input[type=file]').keydown(function(e) { if (e.keyCode == '13') e.preventDefault(); }); + // flag object as complete this.loaded = true; -- cgit v1.2.3