mirror of
https://github.com/jquery/jquery.git
synced 2026-01-24 23:58:12 -05:00
Removes temp var, shaves 2 bytes from gzipped size
This commit is contained in:
@@ -144,8 +144,9 @@ jQuery.fn.extend({
|
||||
},
|
||||
|
||||
addBack: function( selector ) {
|
||||
var prior = this.prevObject;
|
||||
return this.add( selector == null ? prior : prior.filter(selector) );
|
||||
return this.add( selector == null ?
|
||||
this.prevObject : this.prevObject.filter(selector)
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user