Fixed an issue with how .data() was expecting output (trigger now returns exact output - or null if none is provided, which was tripping it up).
This commit is contained in:
parent
46ee77bcc3
commit
62bd7e6817
|
@ -482,7 +482,7 @@ jQuery.fn = jQuery.prototype = {
|
|||
if ( data === undefined && this.length )
|
||||
data = jQuery.data( this[0], key );
|
||||
|
||||
return data === undefined && parts[1] ?
|
||||
return data == null && parts[1] ?
|
||||
this.data( parts[0] ) :
|
||||
data;
|
||||
} else
|
||||
|
|
Loading…
Reference in a new issue