Changeset 7962
- Timestamp:
- 04/06/07 17:56:25 (21 months ago)
- Files:
-
- 1 modified
-
dojo/trunk/_base/_loader/hostenv_browser.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dojo/trunk/_base/_loader/hostenv_browser.js
r7961 r7962 256 256 // than referring to 'window.document' to ensure your code runs 257 257 // correctly in managed contexts. 258 if( this["document"]){259 dojo._currentDocument = this.document;258 if(window["document"]){ 259 dojo._currentDocument = window.document; 260 260 } 261 261