Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../httpdocs/clone/wp-inclu.../js/jquery
File: jquery.js
if ( elem.nodeType === 9 ) {
[10500] Fix | Delete
doc = elem.documentElement;
[10501] Fix | Delete
[10502] Fix | Delete
// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],
[10503] Fix | Delete
// whichever is greatest
[10504] Fix | Delete
return Math.max(
[10505] Fix | Delete
elem.body[ "scroll" + name ], doc[ "scroll" + name ],
[10506] Fix | Delete
elem.body[ "offset" + name ], doc[ "offset" + name ],
[10507] Fix | Delete
doc[ "client" + name ]
[10508] Fix | Delete
);
[10509] Fix | Delete
}
[10510] Fix | Delete
[10511] Fix | Delete
return value === undefined ?
[10512] Fix | Delete
[10513] Fix | Delete
// Get width or height on the element, requesting but not forcing parseFloat
[10514] Fix | Delete
jQuery.css( elem, type, extra ) :
[10515] Fix | Delete
[10516] Fix | Delete
// Set width or height on the element
[10517] Fix | Delete
jQuery.style( elem, type, value, extra );
[10518] Fix | Delete
}, type, chainable ? margin : undefined, chainable );
[10519] Fix | Delete
};
[10520] Fix | Delete
} );
[10521] Fix | Delete
} );
[10522] Fix | Delete
[10523] Fix | Delete
[10524] Fix | Delete
jQuery.each( [
[10525] Fix | Delete
"ajaxStart",
[10526] Fix | Delete
"ajaxStop",
[10527] Fix | Delete
"ajaxComplete",
[10528] Fix | Delete
"ajaxError",
[10529] Fix | Delete
"ajaxSuccess",
[10530] Fix | Delete
"ajaxSend"
[10531] Fix | Delete
], function( _i, type ) {
[10532] Fix | Delete
jQuery.fn[ type ] = function( fn ) {
[10533] Fix | Delete
return this.on( type, fn );
[10534] Fix | Delete
};
[10535] Fix | Delete
} );
[10536] Fix | Delete
[10537] Fix | Delete
[10538] Fix | Delete
[10539] Fix | Delete
[10540] Fix | Delete
jQuery.fn.extend( {
[10541] Fix | Delete
[10542] Fix | Delete
bind: function( types, data, fn ) {
[10543] Fix | Delete
return this.on( types, null, data, fn );
[10544] Fix | Delete
},
[10545] Fix | Delete
unbind: function( types, fn ) {
[10546] Fix | Delete
return this.off( types, null, fn );
[10547] Fix | Delete
},
[10548] Fix | Delete
[10549] Fix | Delete
delegate: function( selector, types, data, fn ) {
[10550] Fix | Delete
return this.on( types, selector, data, fn );
[10551] Fix | Delete
},
[10552] Fix | Delete
undelegate: function( selector, types, fn ) {
[10553] Fix | Delete
[10554] Fix | Delete
// ( namespace ) or ( selector, types [, fn] )
[10555] Fix | Delete
return arguments.length === 1 ?
[10556] Fix | Delete
this.off( selector, "**" ) :
[10557] Fix | Delete
this.off( types, selector || "**", fn );
[10558] Fix | Delete
},
[10559] Fix | Delete
[10560] Fix | Delete
hover: function( fnOver, fnOut ) {
[10561] Fix | Delete
return this
[10562] Fix | Delete
.on( "mouseenter", fnOver )
[10563] Fix | Delete
.on( "mouseleave", fnOut || fnOver );
[10564] Fix | Delete
}
[10565] Fix | Delete
} );
[10566] Fix | Delete
[10567] Fix | Delete
jQuery.each(
[10568] Fix | Delete
( "blur focus focusin focusout resize scroll click dblclick " +
[10569] Fix | Delete
"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
[10570] Fix | Delete
"change select submit keydown keypress keyup contextmenu" ).split( " " ),
[10571] Fix | Delete
function( _i, name ) {
[10572] Fix | Delete
[10573] Fix | Delete
// Handle event binding
[10574] Fix | Delete
jQuery.fn[ name ] = function( data, fn ) {
[10575] Fix | Delete
return arguments.length > 0 ?
[10576] Fix | Delete
this.on( name, null, data, fn ) :
[10577] Fix | Delete
this.trigger( name );
[10578] Fix | Delete
};
[10579] Fix | Delete
}
[10580] Fix | Delete
);
[10581] Fix | Delete
[10582] Fix | Delete
[10583] Fix | Delete
[10584] Fix | Delete
[10585] Fix | Delete
// Support: Android <=4.0 only
[10586] Fix | Delete
// Make sure we trim BOM and NBSP
[10587] Fix | Delete
// Require that the "whitespace run" starts from a non-whitespace
[10588] Fix | Delete
// to avoid O(N^2) behavior when the engine would try matching "\s+$" at each space position.
[10589] Fix | Delete
var rtrim = /^[\s\uFEFF\xA0]+|([^\s\uFEFF\xA0])[\s\uFEFF\xA0]+$/g;
[10590] Fix | Delete
[10591] Fix | Delete
// Bind a function to a context, optionally partially applying any
[10592] Fix | Delete
// arguments.
[10593] Fix | Delete
// jQuery.proxy is deprecated to promote standards (specifically Function#bind)
[10594] Fix | Delete
// However, it is not slated for removal any time soon
[10595] Fix | Delete
jQuery.proxy = function( fn, context ) {
[10596] Fix | Delete
var tmp, args, proxy;
[10597] Fix | Delete
[10598] Fix | Delete
if ( typeof context === "string" ) {
[10599] Fix | Delete
tmp = fn[ context ];
[10600] Fix | Delete
context = fn;
[10601] Fix | Delete
fn = tmp;
[10602] Fix | Delete
}
[10603] Fix | Delete
[10604] Fix | Delete
// Quick check to determine if target is callable, in the spec
[10605] Fix | Delete
// this throws a TypeError, but we will just return undefined.
[10606] Fix | Delete
if ( !isFunction( fn ) ) {
[10607] Fix | Delete
return undefined;
[10608] Fix | Delete
}
[10609] Fix | Delete
[10610] Fix | Delete
// Simulated bind
[10611] Fix | Delete
args = slice.call( arguments, 2 );
[10612] Fix | Delete
proxy = function() {
[10613] Fix | Delete
return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
[10614] Fix | Delete
};
[10615] Fix | Delete
[10616] Fix | Delete
// Set the guid of unique handler to the same of original handler, so it can be removed
[10617] Fix | Delete
proxy.guid = fn.guid = fn.guid || jQuery.guid++;
[10618] Fix | Delete
[10619] Fix | Delete
return proxy;
[10620] Fix | Delete
};
[10621] Fix | Delete
[10622] Fix | Delete
jQuery.holdReady = function( hold ) {
[10623] Fix | Delete
if ( hold ) {
[10624] Fix | Delete
jQuery.readyWait++;
[10625] Fix | Delete
} else {
[10626] Fix | Delete
jQuery.ready( true );
[10627] Fix | Delete
}
[10628] Fix | Delete
};
[10629] Fix | Delete
jQuery.isArray = Array.isArray;
[10630] Fix | Delete
jQuery.parseJSON = JSON.parse;
[10631] Fix | Delete
jQuery.nodeName = nodeName;
[10632] Fix | Delete
jQuery.isFunction = isFunction;
[10633] Fix | Delete
jQuery.isWindow = isWindow;
[10634] Fix | Delete
jQuery.camelCase = camelCase;
[10635] Fix | Delete
jQuery.type = toType;
[10636] Fix | Delete
[10637] Fix | Delete
jQuery.now = Date.now;
[10638] Fix | Delete
[10639] Fix | Delete
jQuery.isNumeric = function( obj ) {
[10640] Fix | Delete
[10641] Fix | Delete
// As of jQuery 3.0, isNumeric is limited to
[10642] Fix | Delete
// strings and numbers (primitives or objects)
[10643] Fix | Delete
// that can be coerced to finite numbers (gh-2662)
[10644] Fix | Delete
var type = jQuery.type( obj );
[10645] Fix | Delete
return ( type === "number" || type === "string" ) &&
[10646] Fix | Delete
[10647] Fix | Delete
// parseFloat NaNs numeric-cast false positives ("")
[10648] Fix | Delete
// ...but misinterprets leading-number strings, particularly hex literals ("0x...")
[10649] Fix | Delete
// subtraction forces infinities to NaN
[10650] Fix | Delete
!isNaN( obj - parseFloat( obj ) );
[10651] Fix | Delete
};
[10652] Fix | Delete
[10653] Fix | Delete
jQuery.trim = function( text ) {
[10654] Fix | Delete
return text == null ?
[10655] Fix | Delete
"" :
[10656] Fix | Delete
( text + "" ).replace( rtrim, "$1" );
[10657] Fix | Delete
};
[10658] Fix | Delete
[10659] Fix | Delete
[10660] Fix | Delete
[10661] Fix | Delete
// Register as a named AMD module, since jQuery can be concatenated with other
[10662] Fix | Delete
// files that may use define, but not via a proper concatenation script that
[10663] Fix | Delete
// understands anonymous AMD modules. A named AMD is safest and most robust
[10664] Fix | Delete
// way to register. Lowercase jquery is used because AMD module names are
[10665] Fix | Delete
// derived from file names, and jQuery is normally delivered in a lowercase
[10666] Fix | Delete
// file name. Do this after creating the global so that if an AMD module wants
[10667] Fix | Delete
// to call noConflict to hide this version of jQuery, it will work.
[10668] Fix | Delete
[10669] Fix | Delete
// Note that for maximum portability, libraries that are not jQuery should
[10670] Fix | Delete
// declare themselves as anonymous modules, and avoid setting a global if an
[10671] Fix | Delete
// AMD loader is present. jQuery is a special case. For more information, see
[10672] Fix | Delete
// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon
[10673] Fix | Delete
[10674] Fix | Delete
if ( typeof define === "function" && define.amd ) {
[10675] Fix | Delete
define( "jquery", [], function() {
[10676] Fix | Delete
return jQuery;
[10677] Fix | Delete
} );
[10678] Fix | Delete
}
[10679] Fix | Delete
[10680] Fix | Delete
[10681] Fix | Delete
[10682] Fix | Delete
[10683] Fix | Delete
var
[10684] Fix | Delete
[10685] Fix | Delete
// Map over jQuery in case of overwrite
[10686] Fix | Delete
_jQuery = window.jQuery,
[10687] Fix | Delete
[10688] Fix | Delete
// Map over the $ in case of overwrite
[10689] Fix | Delete
_$ = window.$;
[10690] Fix | Delete
[10691] Fix | Delete
jQuery.noConflict = function( deep ) {
[10692] Fix | Delete
if ( window.$ === jQuery ) {
[10693] Fix | Delete
window.$ = _$;
[10694] Fix | Delete
}
[10695] Fix | Delete
[10696] Fix | Delete
if ( deep && window.jQuery === jQuery ) {
[10697] Fix | Delete
window.jQuery = _jQuery;
[10698] Fix | Delete
}
[10699] Fix | Delete
[10700] Fix | Delete
return jQuery;
[10701] Fix | Delete
};
[10702] Fix | Delete
[10703] Fix | Delete
// Expose jQuery and $ identifiers, even in AMD
[10704] Fix | Delete
// (trac-7102#comment:10, https://github.com/jquery/jquery/pull/557)
[10705] Fix | Delete
// and CommonJS for browser emulators (trac-13566)
[10706] Fix | Delete
if ( typeof noGlobal === "undefined" ) {
[10707] Fix | Delete
window.jQuery = window.$ = jQuery;
[10708] Fix | Delete
}
[10709] Fix | Delete
[10710] Fix | Delete
[10711] Fix | Delete
[10712] Fix | Delete
[10713] Fix | Delete
return jQuery;
[10714] Fix | Delete
} );
[10715] Fix | Delete
jQuery.noConflict();
[10716] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function