Changeset 7659
- Timestamp:
- 03/19/07 01:42:32 (22 months ago)
- Location:
- dojo/trunk/_base/_loader
- Files:
-
- 2 modified
-
hostenv_browser.js (modified) (2 diffs)
-
loader.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dojo/trunk/_base/_loader/hostenv_browser.js
r7657 r7659 188 188 if(arguments.callee.initialized || (type!="domcontentloaded" && type!="load")){ return; } 189 189 arguments.callee.initialized = true; 190 if(typeof (_timer)!= 'undefined'){191 clearInterval( _timer);192 delete _timer;190 if(typeof dojo["_khtmlTimer"] != 'undefined'){ 191 clearInterval(dojo._khtmlTimer); 192 delete dojo._khtmlTimer; 193 193 } 194 194 … … 227 227 228 228 if(/(WebKit|khtml)/i.test(navigator.userAgent)){ // sniff 229 var _timer = setInterval(function(){229 dojo._khtmlTimer = setInterval(function(){ 230 230 if(/loaded|complete/.test(document.readyState)){ 231 231 dojo._loadInit(); // call the onload handler -
dojo/trunk/_base/_loader/loader.js
r7658 r7659 217 217 } 218 218 219 dojo. getModuleSymbols = function(/*String*/modulename){219 dojo._getModuleSymbols = function(/*String*/modulename){ 220 220 // summary: 221 221 // Converts a module name in dotted JS notation to an array … … 283 283 var nsyms = moduleName.split("."); 284 284 285 var syms = this. getModuleSymbols(moduleName);285 var syms = this._getModuleSymbols(moduleName); 286 286 // console.debug(syms); 287 287 var startedRelative = ((syms[0].charAt(0) != '/') && !syms[0].match(/^\w+:/));