Changeset 9616
- Timestamp:
- 07/12/07 13:34:55 (18 months ago)
- Files:
-
- 1 modified
-
dojo/trunk/_base/array.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dojo/trunk/_base/array.js
r9615 r9616 17 17 }else if(Array.prototype.forEach){ 18 18 // safari3 only exposes the fast methods on the prototype 19 for(var x=0; x<tn.length; x++) {19 for(var x=0; x<tn.length; x++){ 20 20 d[tn[x]] = makeCall(tn[x]); // have to do this to bind the looped var 21 21 }