mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
UI: Update jQuery to 1.11.3
This commit is contained in:
parent
2d42c59d70
commit
fce3f86be7
13
src/UI/JsLibraries/jquery.js
vendored
13
src/UI/JsLibraries/jquery.js
vendored
@ -1,5 +1,5 @@
|
||||
/*!
|
||||
* jQuery JavaScript Library v1.11.2
|
||||
* jQuery JavaScript Library v1.11.3
|
||||
* http://jquery.com/
|
||||
*
|
||||
* Includes Sizzle.js
|
||||
@ -9,7 +9,7 @@
|
||||
* Released under the MIT license
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* Date: 2014-12-17T15:27Z
|
||||
* Date: 2015-04-28T16:19Z
|
||||
*/
|
||||
|
||||
(function( global, factory ) {
|
||||
@ -64,7 +64,7 @@
|
||||
|
||||
|
||||
var
|
||||
version = "1.11.2",
|
||||
version = "1.11.3",
|
||||
|
||||
// Define a local copy of jQuery
|
||||
jQuery = function( selector, context ) {
|
||||
@ -569,7 +569,12 @@
|
||||
});
|
||||
|
||||
function isArraylike( obj ) {
|
||||
var length = obj.length,
|
||||
|
||||
// Support: iOS 8.2 (not reproducible in simulator)
|
||||
// `in` check used to prevent JIT error (gh-2145)
|
||||
// hasOwn isn't used here due to false negatives
|
||||
// regarding Nodelist length in IE
|
||||
var length = "length" in obj && obj.length,
|
||||
type = jQuery.type( obj );
|
||||
|
||||
if ( type === "function" || jQuery.isWindow( obj ) ) {
|
||||
|
Loading…
Reference in New Issue
Block a user