diff options
author | thomascube <thomas@roundcube.net> | 2010-07-17 15:09:14 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2010-07-17 15:09:14 +0000 |
commit | 9a4fd756a911dc976a550f18c2a301ba80149f7e (patch) | |
tree | c2f5edd3178560b393790e2798b57898f3d49490 /skins/default/functions.js | |
parent | c7f7ce889d8883751b86952fc42410bde159e83f (diff) |
Don't open file browser on IE (#1486841)
Diffstat (limited to 'skins/default/functions.js')
-rw-r--r-- | skins/default/functions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skins/default/functions.js b/skins/default/functions.js index 2a393c778..47eb1fc4e 100644 --- a/skins/default/functions.js +++ b/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(); }, |