Apply consistent ordering in all modules. -219 bytes. Order modules like functions > jQuery.extend > jQuery.fn.extend.

This commit is contained in:
Timmy Willison
2013-09-09 12:22:37 -04:00
parent 6bc8059717
commit 49cfcb9f3e
7 changed files with 799 additions and 798 deletions

View File

@@ -2,10 +2,12 @@ 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;
});