Changeset 238 for trunk/common

Show
Ignore:
Timestamp:
10/11/07 19:35:23 (2 years ago)
Author:
ydnar
Message:

merged r237 into trunk

Location:
trunk/common
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/common/Core.js

    r228 r238  
    894894         
    895895        atEnd: function() { 
    896             return this.index >= (this.data.length - 1) ? true : false; 
     896            return this.index >= this.data.length ? true : false; 
    897897        }, 
    898898         
  • trunk/common/DOM.js

    r228 r238  
    589589            var e = en.item(); 
    590590            if( DOM.hasClassName( e, cn ) ) 
    591                 filtered[ filtered.length ] = e; 
     591                filtered.push( e ); 
    592592        } 
    593593        return filtered;