Files
jquery/src/deprecated.js
2013-04-07 23:22:13 -04:00

12 lines
234 B
JavaScript

// Limit scope pollution from any deprecated API
// (function() {
// The number of elements contained in the matched element set
jQuery.fn.size = function() {
return this.length;
};
jQuery.fn.andSelf = jQuery.fn.addBack;
// })();