jenkins-bot has submitted this change and it was merged. Change subject: Update jQuery Client to v2.0.0 ......................................................................
Update jQuery Client to v2.0.0 Breaking change * Microsoft's new Edge browser is now identified as "edge" instead of "msie". Project link * https://github.com/wikimedia/jquery-client File link * https://github.com/wikimedia/jquery-client/blob/v2.0.0/jquery.client.js Change-Id: I3d6aab9687feb45e813167f6c9c08575d3710148 --- M lib/jquery.client/jquery.client.js 1 file changed, 6 insertions(+), 3 deletions(-) Approvals: Krinkle: Looks good to me, approved jenkins-bot: Verified diff --git a/lib/jquery.client/jquery.client.js b/lib/jquery.client/jquery.client.js index 1560c7d..8257d85 100644 --- a/lib/jquery.client/jquery.client.js +++ b/lib/jquery.client/jquery.client.js @@ -1,5 +1,5 @@ /*! - * jQuery Client v1.0.0 + * jQuery Client v2.0.0 * https://www.mediawiki.org/wiki/JQuery_Client * * Copyright 2010-2015 jquery-client maintainers and other contributors. @@ -182,9 +182,12 @@ version = match[1]; } } - // And IE 12's different lies about not being IE + // And MS Edge's lies about being Chrome + // + // It's different enough from classic IE Trident engine that they do this + // to avoid getting caught by MSIE-specific browser sniffing. if ( name === 'chrome' && ( match = ua.match( /\bedge\/([0-9\.]*)/ ) ) ) { - name = 'msie'; + name = 'edge'; version = match[1]; layout = 'edge'; layoutversion = parseInt( match[1], 10 ); -- To view, visit https://gerrit.wikimedia.org/r/216531 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I3d6aab9687feb45e813167f6c9c08575d3710148 Gerrit-PatchSet: 8 Gerrit-Project: VisualEditor/VisualEditor Gerrit-Branch: master Gerrit-Owner: Paladox <thomasmulhall...@yahoo.com> Gerrit-Reviewer: Jforrester <jforres...@wikimedia.org> Gerrit-Reviewer: Krinkle <krinklem...@gmail.com> Gerrit-Reviewer: Legoktm <legoktm.wikipe...@gmail.com> Gerrit-Reviewer: Paladox <thomasmulhall...@yahoo.com> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list MediaWiki-commits@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits