Fix/test for #861
This commit is contained in:
parent
5cfaef9ff9
commit
d9464547e0
10
src/jquery/coreTest.js
vendored
10
src/jquery/coreTest.js
vendored
|
@ -663,3 +663,13 @@ test("eq(), gt(), lt(), contains()", function() {
|
|||
isSet( $("#ap a").lt(3).get(), q("google", "groups", "anchor1"), "lt()" );
|
||||
isSet( $("#foo a").contains("log").get(), q("anchor2", "simon"), "contains()" );
|
||||
});
|
||||
|
||||
test("click() context", function() {
|
||||
$('<li><a href="#">Change location</a></li>').prependTo('#firstUL').find('a').bind('click', function() {
|
||||
var close = $('spanx', this); // same with $(this).find('span');
|
||||
ok( close.length == 0, "Element does not exist, length must be zero" );
|
||||
ok( !close[0], "Element does not exist, direct access to element must return undefined" );
|
||||
//console.log( close[0]); // it's the <a> and not a <span> element
|
||||
return false;
|
||||
}).click();
|
||||
});
|
7
src/jquery/jquery.js
vendored
7
src/jquery/jquery.js
vendored
|
@ -257,9 +257,10 @@ jQuery.fn = jQuery.prototype = {
|
|||
* @cat Core
|
||||
*/
|
||||
pushStack: function( a ) {
|
||||
var ret = jQuery(this);
|
||||
var ret = jQuery(a);
|
||||
ret.prevObject = this;
|
||||
return ret.setArray( a );
|
||||
//return ret.setArray( a );
|
||||
return ret;
|
||||
},
|
||||
|
||||
/**
|
||||
|
@ -803,7 +804,7 @@ jQuery.fn = jQuery.prototype = {
|
|||
find: function(t) {
|
||||
return this.pushStack( jQuery.map( this, function(a){
|
||||
return jQuery.find(t,a);
|
||||
}) );
|
||||
}), t );
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue