diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-08-24 08:54:34 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-08-24 08:54:34 +0000 |
| commit | f8ce57a7d786d5139fb8b5757b4ac6c8dd4d2cd8 (patch) | |
| tree | f4a265c448ef0b214a4f025efcd81d6a747396d3 /roundcubemail/program/js/app.js | |
| parent | c543dcf4030b4719179e97bc6d3345efb0cebe17 (diff) | |
- Unset message type after hidding it
git-svn-id: https://svn.roundcube.net/trunk@3904 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js/app.js')
| -rw-r--r-- | roundcubemail/program/js/app.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 1e3da6d3b..4df147b53 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -4509,8 +4509,10 @@ function rcube_webmail() // make a message row disapear this.hide_message = function(fade) { - if (this.gui_objects.message) + if (this.gui_objects.message) { $(this.gui_objects.message).unbind()[(fade?'fadeOut':'hide')](); + this.gui_objects.message.__type = null; + } }; // get type of currently displayed message |
