diff options
Diffstat (limited to 'static/website/bootstrap-css/bower_components/jquery/src/deprecated.js')
-rw-r--r-- | static/website/bootstrap-css/bower_components/jquery/src/deprecated.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/static/website/bootstrap-css/bower_components/jquery/src/deprecated.js b/static/website/bootstrap-css/bower_components/jquery/src/deprecated.js new file mode 100644 index 0000000..1b068bc --- /dev/null +++ b/static/website/bootstrap-css/bower_components/jquery/src/deprecated.js @@ -0,0 +1,13 @@ +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; + +}); |