#3995 closed enhancement (fixed)
jQuery(array) and get()
Reported by: | Robert Katić | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.3.2 |
Component: | core | Version: | 1.3.1 |
Keywords: | optimization, array | Cc: | |
Blocked by: | Blocking: |
Description
On every jQuery(array) call, the array is unnecessary cloned before the setArray call. This can be easily avoided adding this code at line 72:
// HANDLE: $(array) } else if ( jQuery.isArray( selector ) ) return this.setArray( selector )
The get() call can be optimized by replacing the line 98 with:
Array.prototype.slice.call( this ) :
Change History (2)
comment:1 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 Changed 14 years ago by
Oops, meant [6200]. Accidentally committed it as part of something else... oops :-/
Note: See
TracTickets for help on using
tickets.
Fixed in SVN rev [6199].