diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-07-29 16:57:11 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-07-29 16:57:11 +0000 |
| commit | 948e277ba4b6e3e7fa5263104ccc6cac7aea898b (patch) | |
| tree | 7148a6dc1e94e3c847c046d1826252db5c8a11c1 /roundcubemail/program/js | |
| parent | 98b08a45e5c190ea765f7aa3ed3f1e9dedf027dc (diff) | |
- Unify/add loading messages when "opening" a frame
git-svn-id: https://svn.roundcube.net/trunk@4990 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js')
| -rw-r--r-- | roundcubemail/program/js/app.js | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 1814bedf2..da445a39c 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -1880,9 +1880,7 @@ function rcube_webmail() if (action == 'preview' && String(target.location.href).indexOf(url) >= 0) this.show_contentframe(true); else { - if (!this.env.frame_lock) { - (this.is_framed() ? parent.rcmail : this).env.frame_lock = this.set_busy(true, 'loading'); - } + this.lock_frame(); this.location_href(this.env.comm_path+url, target); // mark as read and change mbox unread counter @@ -1917,6 +1915,12 @@ function rcube_webmail() this.set_busy(false, null, this.env.frame_lock); }; + this.lock_frame = function() + { + if (!this.env.frame_lock) + (this.is_framed() ? parent.rcmail : this).env.frame_lock = this.set_busy(true, 'loading'); + }; + // list a specific page this.list_page = function(page) { @@ -3906,8 +3910,10 @@ function rcube_webmail() if (this.env.group) add_url += '&_gid='+urlencode(this.env.group); - this.set_busy(true); - this.location_href(this.env.comm_path+'&_action='+action+'&_source='+urlencode(this.env.source)+'&_cid='+urlencode(cid) + add_url, target); + this.lock_frame(); + this.location_href(this.env.comm_path+'&_action='+action + +'&_source='+urlencode(this.env.source) + +'&_cid='+urlencode(cid) + add_url, target); } return true; }; @@ -4427,6 +4433,7 @@ function rcube_webmail() this.contact_list.clear_selection(); } + this.lock_frame(); this.location_href(this.env.comm_path+'&_action=search'+add_url, target); return true; @@ -4460,6 +4467,7 @@ function rcube_webmail() add_url = '&_framed=1'; target = window.frames[this.env.contentframe]; } + this.lock_frame(); this.location_href(this.env.comm_path+'&_action=edit-prefs&_section='+id+add_url, target); } @@ -4861,9 +4869,7 @@ function rcube_webmail() this.show_contentframe(true); } else { - if (!this.env.frame_lock) { - (parent.rcmail ? parent.rcmail : this).env.frame_lock = this.set_busy(true, 'loading'); - } + this.lock_frame(); this.location_href(this.env.comm_path+url, target); } }; |
