Skip to content

Commit

Permalink
Merge branch 'MDL-51535-master' of git://github.com/junpataleta/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
danpoltawski committed Oct 6, 2015
2 parents 6b58b26 + d463b9c commit a5bde1f
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 11 deletions.
4 changes: 0 additions & 4 deletions lib/jquery/jquery-1.11.2.min.js

This file was deleted.

13 changes: 9 additions & 4 deletions lib/jquery/jquery-1.11.2.js → lib/jquery/jquery-1.11.3.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jQuery JavaScript Library v1.11.2
* jQuery JavaScript Library v1.11.3
* http://jquery.com/
*
* Includes Sizzle.js
Expand All @@ -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 ) {
Expand Down Expand Up @@ -64,7 +64,7 @@ var support = {};


var
version = "1.11.2",
version = "1.11.3",

// Define a local copy of jQuery
jQuery = function( selector, context ) {
Expand Down Expand Up @@ -569,7 +569,12 @@ jQuery.each("Boolean Number String Function Array Date RegExp Object Error".spli
});

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 ) ) {
Expand Down
5 changes: 5 additions & 0 deletions lib/jquery/jquery-1.11.3.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/jquery/plugins.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
*/

$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')),
'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')),
Expand Down
2 changes: 1 addition & 1 deletion lib/requirejs/moodle-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var require = {
skipDataMain: true,

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]',
jqueryprivate: '[JSURL]lib/requirejs/jquery-private[JSEXT]'
},
Expand Down
2 changes: 1 addition & 1 deletion lib/thirdpartylibs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@
<location>jquery</location>
<name>jQuery</name>
<license>MIT</license>
<version>1.11.2</version>
<version>1.11.3</version>
<licenseversion></licenseversion>
</library>
<library>
Expand Down

0 comments on commit a5bde1f

Please sign in to comment.