deprecated.js 234 B

1234567891011
  1. // Limit scope pollution from any deprecated API
  2. // (function() {
  3. // The number of elements contained in the matched element set
  4. jQuery.fn.size = function() {
  5. return this.length;
  6. };
  7. jQuery.fn.andSelf = jQuery.fn.addBack;
  8. // })();