diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-04-20 17:38:09 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-04-20 17:38:09 +0000 |
| commit | 7a91e9596c6448f06782b324447f95c4a032fd04 (patch) | |
| tree | 841e9eb7ff6a7c81de96ad1dbaa954b63bc2843e | |
| parent | ac7f0f3379fc9ffae2998727531daeab2a66e4f5 (diff) | |
- fix iframe hack (divs must be removed also in mouseup)
git-svn-id: https://svn.roundcube.net/trunk@3514 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/js/list.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/roundcubemail/program/js/list.js b/roundcubemail/program/js/list.js index a39ba62dc..8d6d9f1e6 100644 --- a/roundcubemail/program/js/list.js +++ b/roundcubemail/program/js/list.js @@ -285,8 +285,11 @@ click_row: function(e, id) else this.triggerEvent('click'); - if (!this.drag_active) + if (!this.drag_active) { + // remove temp divs + $('div.iframe-dragdrop-fix').each(function() { this.parentNode.removeChild(this); }); rcube_event.cancel(e); + } this.rows[id].clicked = now; return false; |
