Changeset 4990 in subversion
- Timestamp:
- Jul 29, 2011 12:57:11 PM (22 months ago)
- File:
-
- 1 edited
-
trunk/roundcubemail/program/js/app.js (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/js/app.js
r4984 r4990 1881 1881 this.show_contentframe(true); 1882 1882 else { 1883 if (!this.env.frame_lock) { 1884 (this.is_framed() ? parent.rcmail : this).env.frame_lock = this.set_busy(true, 'loading'); 1885 } 1883 this.lock_frame(); 1886 1884 this.location_href(this.env.comm_path+url, target); 1887 1885 … … 1916 1914 if (!show && this.busy) 1917 1915 this.set_busy(false, null, this.env.frame_lock); 1916 }; 1917 1918 this.lock_frame = function() 1919 { 1920 if (!this.env.frame_lock) 1921 (this.is_framed() ? parent.rcmail : this).env.frame_lock = this.set_busy(true, 'loading'); 1918 1922 }; 1919 1923 … … 3907 3911 add_url += '&_gid='+urlencode(this.env.group); 3908 3912 3909 this.set_busy(true); 3910 this.location_href(this.env.comm_path+'&_action='+action+'&_source='+urlencode(this.env.source)+'&_cid='+urlencode(cid) + add_url, target); 3913 this.lock_frame(); 3914 this.location_href(this.env.comm_path+'&_action='+action 3915 +'&_source='+urlencode(this.env.source) 3916 +'&_cid='+urlencode(cid) + add_url, target); 3911 3917 } 3912 3918 return true; … … 4428 4434 } 4429 4435 4436 this.lock_frame(); 4430 4437 this.location_href(this.env.comm_path+'&_action=search'+add_url, target); 4431 4438 … … 4461 4468 target = window.frames[this.env.contentframe]; 4462 4469 } 4470 this.lock_frame(); 4463 4471 this.location_href(this.env.comm_path+'&_action=edit-prefs&_section='+id+add_url, target); 4464 4472 } … … 4862 4870 } 4863 4871 else { 4864 if (!this.env.frame_lock) { 4865 (parent.rcmail ? parent.rcmail : this).env.frame_lock = this.set_busy(true, 'loading'); 4866 } 4872 this.lock_frame(); 4867 4873 this.location_href(this.env.comm_path+url, target); 4868 4874 }
Note: See TracChangeset
for help on using the changeset viewer.
