Changeset 237
- Timestamp:
- 10/11/07 19:27:25 (2 years ago)
- Location:
- branches/vox-38/common
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/vox-38/common/Core.js
r228 r237 894 894 895 895 atEnd: function() { 896 return this.index >= (this.data.length - 1)? true : false;896 return this.index >= this.data.length ? true : false; 897 897 }, 898 898 -
branches/vox-38/common/DOM.js
r228 r237 589 589 var e = en.item(); 590 590 if( DOM.hasClassName( e, cn ) ) 591 filtered [ filtered.length ] = e;591 filtered.push( e ); 592 592 } 593 593 return filtered;
