added vendor directory and gulp support for better dependency organization and compiling less and js files
removed timeline css and merged it with the theme css and added gulp support for a browser sync task as well for easier development removed composer package until the repo issue is resolved - added minified versions into the bower.json for when the repo issue is resolved
This commit is contained in:
35
bower_components/jquery/src/deprecated.js
vendored
35
bower_components/jquery/src/deprecated.js
vendored
@@ -1,13 +1,30 @@
|
||||
define([
|
||||
"./core",
|
||||
"./traversing"
|
||||
define( [
|
||||
"./core"
|
||||
], function( jQuery ) {
|
||||
|
||||
// The number of elements contained in the matched element set
|
||||
jQuery.fn.size = function() {
|
||||
return this.length;
|
||||
};
|
||||
"use strict";
|
||||
|
||||
jQuery.fn.andSelf = jQuery.fn.addBack;
|
||||
jQuery.fn.extend( {
|
||||
|
||||
});
|
||||
bind: function( types, data, fn ) {
|
||||
return this.on( types, null, data, fn );
|
||||
},
|
||||
unbind: function( types, fn ) {
|
||||
return this.off( types, null, fn );
|
||||
},
|
||||
|
||||
delegate: function( selector, types, data, fn ) {
|
||||
return this.on( types, selector, data, fn );
|
||||
},
|
||||
undelegate: function( selector, types, fn ) {
|
||||
|
||||
// ( namespace ) or ( selector, types [, fn] )
|
||||
return arguments.length === 1 ?
|
||||
this.off( selector, "**" ) :
|
||||
this.off( types, selector || "**", fn );
|
||||
}
|
||||
} );
|
||||
|
||||
jQuery.parseJSON = JSON.parse;
|
||||
|
||||
} );
|
||||
|
||||
Reference in New Issue
Block a user