/home/techb158/ileadtechnology.com/public/admin/bower_components/jquery/src
NameSizeModeActions
ajax/-0755rm
attributes/-0755rm
core/-0755rm
css/-0755rm
data/-0755rm
deferred/-0755rm
effects/-0755rm
event/-0755rm
exports/-0755rm
manipulation/-0755rm
queue/-0755rm
traversing/-0755rm
var/-0755rm
.eslintrc.json600644editdlrm
ajax.js223480644editdlrm
attributes.js2170644editdlrm
callbacks.js55520644editdlrm
core.js90680644editdlrm
css.js132440644editdlrm
data.js43210644editdlrm
deferred.js109970644editdlrm
deprecated.js24670644editdlrm
dimensions.js17510644editdlrm
effects.js174550644editdlrm
event.js194400644editdlrm
index.php530644editdlrm
jquery.js6220644editdlrm
manipulation.js125820644editdlrm
offset.js68680644editdlrm
queue.js30910644editdlrm
selector-native.js63940644editdlrm
selector-sizzle.js4110644editdlrm
selector.js660644editdlrm
serialize.js32170644editdlrm
traversing.js45490644editdlrm
wrap.js14770644editdlrm
Edit: /home/techb158/ileadtechnology.com/public/admin/bower_components/jquery/src/deprecated.js (2467B)
define( [ "./core", "./core/nodeName", "./core/camelCase", "./core/toType", "./var/isFunction", "./var/isWindow", "./var/slice", "./event/alias" ], function( jQuery, nodeName, camelCase, toType, isFunction, isWindow, slice ) { "use strict"; 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 ); } } ); // Bind a function to a context, optionally partially applying any // arguments. // jQuery.proxy is deprecated to promote standards (specifically Function#bind) // However, it is not slated for removal any time soon jQuery.proxy = function( fn, context ) { var tmp, args, proxy; if ( typeof context === "string" ) { tmp = fn[ context ]; context = fn; fn = tmp; } // Quick check to determine if target is callable, in the spec // this throws a TypeError, but we will just return undefined. if ( !isFunction( fn ) ) { return undefined; } // Simulated bind args = slice.call( arguments, 2 ); proxy = function() { return fn.apply( context || this, args.concat( slice.call( arguments ) ) ); }; // Set the guid of unique handler to the same of original handler, so it can be removed proxy.guid = fn.guid = fn.guid || jQuery.guid++; return proxy; }; jQuery.holdReady = function( hold ) { if ( hold ) { jQuery.readyWait++; } else { jQuery.ready( true ); } }; jQuery.isArray = Array.isArray; jQuery.parseJSON = JSON.parse; jQuery.nodeName = nodeName; jQuery.isFunction = isFunction; jQuery.isWindow = isWindow; jQuery.camelCase = camelCase; jQuery.type = toType; jQuery.now = Date.now; jQuery.isNumeric = function( obj ) { // As of jQuery 3.0, isNumeric is limited to // strings and numbers (primitives or objects) // that can be coerced to finite numbers (gh-2662) var type = jQuery.type( obj ); return ( type === "number" || type === "string" ) && // parseFloat NaNs numeric-cast false positives ("") // ...but misinterprets leading-number strings, particularly hex literals ("0x...") // subtraction forces infinities to NaN !isNaN( obj - parseFloat( obj ) ); }; } );