Bug Tracker

Changeset 5754

Show
Ignore:
Timestamp:
06/30/08 16:17:44 (6 months ago)
Author:
aflesler
Message:

jquery core: closes #3102, #3051. $.fn.eq() accepts a stringified integer.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/jquery/src/core.js

    r5745 r5754  
    442442 
    443443    eq: function( i ) { 
    444         return this.slice( i, i + 1 ); 
     444        return this.slice( i, +i + 1 ); 
    445445    }, 
    446446