scratch – Blame information for rev 125

Subversion Repositories:
Rev:
Rev Author Line No. Line
125 office 1 define([
2 "./core",
3 "./traversing"
58 office 4 ], function( jQuery ) {
5  
125 office 6 // The number of elements contained in the matched element set
7 jQuery.fn.size = function() {
8 return this.length;
9 };
58 office 10  
125 office 11 jQuery.fn.andSelf = jQuery.fn.addBack;
58 office 12  
125 office 13 });