jenkins-bot has submitted this change and it was merged. 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 lib/oojs/oojs.jquery.js 1 file changed, 6 insertions(+), 3 deletions(-) Approvals: Esanders: Looks good to me, approved jenkins-bot: Verified diff --git a/lib/oojs/oojs.jquery.js b/lib/oojs/oojs.jquery.js index 4eaf611..c62df22 100644 --- a/lib/oojs/oojs.jquery.js +++ b/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/159647 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I2a78dcd147def3b02314c176e51accb2cefe872e Gerrit-PatchSet: 1 Gerrit-Project: VisualEditor/VisualEditor Gerrit-Branch: master Gerrit-Owner: Jforrester <[email protected]> Gerrit-Reviewer: Esanders <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
