Changeset 954
- Timestamp:
- 01/30/08 18:52:48 (5 years ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
XinhaCore.js (modified) (2 diffs)
-
XinhaLoader.js (modified) (2 diffs)
-
plugins/ExtendedFileManager/assets/manager.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/XinhaCore.js
r951 r954 5379 5379 arguments.callee.done = true; 5380 5380 // kill the timer 5381 if ( _timer) clearInterval(_timer);5381 if (Xinha.onloadTimer) clearInterval(Xinha.onloadTimer); 5382 5382 5383 5383 func(); … … 5398 5398 else if (/applewebkit|KHTML/i.test(navigator.userAgent) ) /* Safari/WebKit/KHTML */ 5399 5399 { 5400 var _timer = scope.setInterval(function()5400 Xinha.onloadTimer = scope.setInterval(function() 5401 5401 { 5402 5402 if (/loaded|complete/.test(scope.document.readyState)) -
trunk/XinhaLoader.js
r943 r954 186 186 arguments.callee.done = true; 187 187 // kill the timer 188 if ( _timer) clearInterval(_timer);188 if (Xinha.onloadTimer) clearInterval(Xinha.onloadTimer); 189 189 190 190 func.call(); … … 204 204 else if (/WebKit/i.test(navigator.userAgent)) 205 205 { 206 var _timer = setInterval(function()206 Xinha.onloadTimer = setInterval(function() 207 207 { 208 208 if (/loaded|complete/.test(document.readyState)) -
trunk/plugins/ExtendedFileManager/assets/manager.js
r939 r954 219 219 } 220 220 } 221 iframeUrl = window.location.href.replace(_backend_url ,iframeUrl );222 221 if ( startDir ) 223 222 {
