Changeset 7348
- Timestamp:
- 02/18/07 21:11:34 (21 months ago)
- Files:
-
- 1 modified
-
branches/0.4/src/loader_xd.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.4/src/loader_xd.js
r7340 r7348 109 109 //Add the module (package) to the list of modules. 110 110 if(this.isXDomain){ 111 //Curious: is this array going to get whacked with multiple access since scripts112 //load asynchronously and may be accessing the array at the same time?113 //JS is single-threaded supposedly, so it should be ok. And we don't need114 //a precise ordering.115 this.xdOrderedReqs.push(module);116 117 //Add to waiting packages.118 111 //If this is a __package__.js file, then this must be 119 112 //a package.* request (since xdomain can only work with the first … … 124 117 } 125 118 119 this.xdOrderedReqs.push(module); 120 121 //Add to waiting packages. 126 122 this.xdInFlight[module] = true; 127 123