Jforrester has uploaded a new change for review. https://gerrit.wikimedia.org/r/207665
Change subject: Update jQuery from v1.11.2 to v1.11.3 ...................................................................... Update jQuery from v1.11.2 to v1.11.3 Source code https://code.jquery.com/jquery-1.11.3.js Release notes http://blog.jquery.com/2015/04/28/jquery-1-11-3 Change-Id: I8ab7fe0f9bd405fb5c0938a993d8fc94e2fa711e --- M lib/jquery/jquery.js 1 file changed, 9 insertions(+), 4 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/VisualEditor/VisualEditor refs/changes/65/207665/1 diff --git a/lib/jquery/jquery.js b/lib/jquery/jquery.js index 1c3aa82..6feb110 100644 --- a/lib/jquery/jquery.js +++ b/lib/jquery/jquery.js @@ -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 ) ) { -- To view, visit https://gerrit.wikimedia.org/r/207665 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I8ab7fe0f9bd405fb5c0938a993d8fc94e2fa711e Gerrit-PatchSet: 1 Gerrit-Project: VisualEditor/VisualEditor Gerrit-Branch: master Gerrit-Owner: Jforrester <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
