summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrobin <robin@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-12-28 15:43:10 +0000
committerrobin <robin@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-12-28 15:43:10 +0000
commitdc5a874cc39a652799755ae0baa99508d8134b3e (patch)
tree7b95880c1a1e8a6d0f14ea0100eab2930edc0ebe
parent64eb4a384c32b7359ac6648c5d5e1ee43d830a58 (diff)
Display draft messages in preview pane (closes #1484173).
git-svn-id: https://svn.roundcube.net/trunk@437 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/program/js/app.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index 50c6b58cc..1f89bd71e 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/program/js/app.js
@@ -1091,13 +1091,13 @@ function rcube_webmail()
{
this.enable_command('show', 'reply', 'reply-all', 'forward', 'print', selected);
this.enable_command('delete', 'moveto', list.selection.length>0 ? true : false);
-
- // start timer for message preview (wait for double click)
- if (selected && this.env.contentframe)
- this.preview_timer = setTimeout(function(){ ref.msglist_get_preview(); }, this.dblclick_time + 10);
- else if (this.env.contentframe)
- this.show_messageframe(false);
}
+
+ // start timer for message preview (wait for double click)
+ if (selected && this.env.contentframe)
+ this.preview_timer = setTimeout(function(){ ref.msglist_get_preview(); }, this.dblclick_time + 10);
+ else if (this.env.contentframe)
+ this.show_messageframe(false);
};