mirror of
https://github.com/moodle/moodle.git
synced 2025-07-19 05:11:33 +02:00
MDL-51535 libraries: Update Jquery to 1.11.3
This commit is contained in:
4
lib/jquery/jquery-1.11.2.min.js
vendored
4
lib/jquery/jquery-1.11.2.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -1,5 +1,5 @@
|
|||||||
/*!
|
/*!
|
||||||
* jQuery JavaScript Library v1.11.2
|
* jQuery JavaScript Library v1.11.3
|
||||||
* http://jquery.com/
|
* http://jquery.com/
|
||||||
*
|
*
|
||||||
* Includes Sizzle.js
|
* Includes Sizzle.js
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* http://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
* Date: 2014-12-17T15:27Z
|
* Date: 2015-04-28T16:19Z
|
||||||
*/
|
*/
|
||||||
|
|
||||||
(function( global, factory ) {
|
(function( global, factory ) {
|
||||||
@@ -64,7 +64,7 @@ var support = {};
|
|||||||
|
|
||||||
|
|
||||||
var
|
var
|
||||||
version = "1.11.2",
|
version = "1.11.3",
|
||||||
|
|
||||||
// Define a local copy of jQuery
|
// Define a local copy of jQuery
|
||||||
jQuery = function( selector, context ) {
|
jQuery = function( selector, context ) {
|
||||||
@@ -569,7 +569,12 @@ jQuery.each("Boolean Number String Function Array Date RegExp Object Error".spli
|
|||||||
});
|
});
|
||||||
|
|
||||||
function isArraylike( obj ) {
|
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 );
|
type = jQuery.type( obj );
|
||||||
|
|
||||||
if ( type === "function" || jQuery.isWindow( obj ) ) {
|
if ( type === "function" || jQuery.isWindow( obj ) ) {
|
5
lib/jquery/jquery-1.11.3.min.js
vendored
Normal file
5
lib/jquery/jquery-1.11.3.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -37,7 +37,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
$plugins = array(
|
$plugins = array(
|
||||||
'jquery' => array('files' => array('jquery-1.11.2.min.js')),
|
'jquery' => array('files' => array('jquery-1.11.3.min.js')),
|
||||||
'migrate' => array('files' => array('jquery-migrate-1.2.1.min.js')),
|
'migrate' => array('files' => array('jquery-migrate-1.2.1.min.js')),
|
||||||
'ui' => array('files' => array('ui-1.11.4/jquery-ui.min.js')),
|
'ui' => array('files' => array('ui-1.11.4/jquery-ui.min.js')),
|
||||||
'ui-css' => array('files' => array('ui-1.11.4/theme/smoothness/jquery-ui.min.css')),
|
'ui-css' => array('files' => array('ui-1.11.4/theme/smoothness/jquery-ui.min.css')),
|
||||||
|
@@ -5,7 +5,7 @@ var require = {
|
|||||||
skipDataMain: true,
|
skipDataMain: true,
|
||||||
|
|
||||||
paths: {
|
paths: {
|
||||||
jquery: '[JSURL]lib/jquery/jquery-1.11.2.min[JSEXT]',
|
jquery: '[JSURL]lib/jquery/jquery-1.11.3.min[JSEXT]',
|
||||||
jqueryui: '[JSURL]lib/jquery/ui-1.11.4/jquery-ui.min[JSEXT]',
|
jqueryui: '[JSURL]lib/jquery/ui-1.11.4/jquery-ui.min[JSEXT]',
|
||||||
jqueryprivate: '[JSURL]lib/requirejs/jquery-private[JSEXT]'
|
jqueryprivate: '[JSURL]lib/requirejs/jquery-private[JSEXT]'
|
||||||
},
|
},
|
||||||
|
@@ -179,7 +179,7 @@
|
|||||||
<location>jquery</location>
|
<location>jquery</location>
|
||||||
<name>jQuery</name>
|
<name>jQuery</name>
|
||||||
<license>MIT</license>
|
<license>MIT</license>
|
||||||
<version>1.11.2</version>
|
<version>1.11.3</version>
|
||||||
<licenseversion></licenseversion>
|
<licenseversion></licenseversion>
|
||||||
</library>
|
</library>
|
||||||
<library>
|
<library>
|
||||||
|
Reference in New Issue
Block a user