You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
223 B
14 lines
223 B
7 years ago
|
define([
|
||
|
"./core",
|
||
|
"./traversing"
|
||
|
], function( jQuery ) {
|
||
|
|
||
|
// The number of elements contained in the matched element set
|
||
|
jQuery.fn.size = function() {
|
||
|
return this.length;
|
||
|
};
|
||
|
|
||
|
jQuery.fn.andSelf = jQuery.fn.addBack;
|
||
|
|
||
|
});
|