diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-07-17 15:09:14 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-07-17 15:09:14 +0000 |
| commit | 78adc0b1dd137c22572638f1c2f033421310ba7f (patch) | |
| tree | 7de48c6e31ffef0800274d63dedbfb2777e8a952 | |
| parent | adb34f0a094d4593e84b13d34b90151d36c7fc63 (diff) | |
Don't open file browser on IE (#1486841)
git-svn-id: https://svn.roundcube.net/trunk@3816 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/skins/default/functions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/skins/default/functions.js b/roundcubemail/skins/default/functions.js index 2a393c778..47eb1fc4e 100644 --- a/roundcubemail/skins/default/functions.js +++ b/roundcubemail/skins/default/functions.js @@ -93,7 +93,7 @@ uploadmenu: function(show) this.show_popupmenu('uploadmenu', show); - if (this.popups.uploadmenu.obj.is(':visible')) + if (!document.all && this.popups.uploadmenu.obj.is(':visible')) $('#attachment-form input[type=file]').click(); }, |
