Jforrester has uploaded a new change for review. https://gerrit.wikimedia.org/r/159646
Change subject: Update OOjs to v1.1.1 ...................................................................... Update OOjs to v1.1.1 Release notes: https://git.wikimedia.org/blob/oojs%2Fcore.git/v1.1.1/History.md Change-Id: I2a78dcd147def3b02314c176e51accb2cefe872e --- M resources/lib/oojs/oojs.jquery.js 1 file changed, 6 insertions(+), 3 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core refs/changes/46/159646/1 diff --git a/resources/lib/oojs/oojs.jquery.js b/resources/lib/oojs/oojs.jquery.js index 4eaf611..c62df22 100644 --- a/resources/lib/oojs/oojs.jquery.js +++ b/resources/lib/oojs/oojs.jquery.js @@ -1,12 +1,12 @@ /*! - * OOjs v1.1.0 optimised for jQuery + * OOjs v1.1.1 optimised for jQuery * https://www.mediawiki.org/wiki/OOjs * * Copyright 2011-2014 OOjs Team and other contributors. * Released under the MIT license * http://oojs.mit-license.org * - * Date: 2014-08-31T21:15:46Z + * Date: 2014-09-11T00:40:09Z */ ( function ( global ) { @@ -253,7 +253,10 @@ aType = typeof aValue; bType = typeof bValue; if ( aType !== bType || - ( ( aType === 'string' || aType === 'number' ) && aValue !== bValue ) || + ( + ( aType === 'string' || aType === 'number' || aType === 'boolean' ) && + aValue !== bValue + ) || ( aValue === Object( aValue ) && !oo.compare( aValue, bValue, asymmetrical ) ) ) { return false; } -- To view, visit https://gerrit.wikimedia.org/r/159646 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I2a78dcd147def3b02314c176e51accb2cefe872e Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/core Gerrit-Branch: master Gerrit-Owner: Jforrester <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
