Changeset 9601f05 in github
- Timestamp:
- Aug 11, 2010 5:10:34 AM (3 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- ac18981
- Parents:
- 5807133
- File:
-
- 1 edited
-
program/js/app.js (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/js/app.js
rc321e2fb r9601f05 1760 1760 this.show_contentframe = function(show) 1761 1761 { 1762 var frm ;1762 var frm, win; 1763 1763 if (this.env.contentframe && (frm = $('#'+this.env.contentframe)) && frm.length) { 1764 if (!show && window.frames[this.env.contentframe]) {1765 if (win dow.frames[this.env.contentframe].location.href.indexOf(this.env.blankpage)<0)1766 win dow.frames[this.env.contentframe].location.href = this.env.blankpage;1764 if (!show && (win = window.frames[this.env.contentframe])) { 1765 if (win.location && win.location.href.indexOf(this.env.blankpage)<0) 1766 win.location.href = this.env.blankpage; 1767 1767 } 1768 1768 else if (!bw.safari && !bw.konq) … … 3726 3726 } 3727 3727 3728 this.name_input.select() ;3728 this.name_input.select().focus(); 3729 3729 }; 3730 3730 … … 3746 3746 } 3747 3747 3748 this.name_input.select() ;3748 this.name_input.select().focus(); 3749 3749 }; 3750 3750 … … 3905 3905 return false; 3906 3906 3907 var add_url = '', target = window;3907 var add_url = '', target = window; 3908 3908 3909 3909 if (this.env.contentframe && window.frames && window.frames[this.env.contentframe]) {
Note: See TracChangeset
for help on using the changeset viewer.
