From 02b01e703da02eb5134c31618c2f6a665ca9cfcb Mon Sep 17 00:00:00 2001 From: alec Date: Mon, 22 Aug 2011 12:57:03 +0000 Subject: - Prevent from form submit with Enter key in file input fields in Internet Explorer git-svn-id: https://svn.roundcube.net/trunk@5109 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/js/app.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'roundcubemail/program') diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 808adc575..bbb14e7ad 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/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