Paladox has uploaded a new change for review. https://gerrit.wikimedia.org/r/158867
Change subject: Update jquery.json.js ...................................................................... Update jquery.json.js Project site * https://github.com/Krinkle/jquery-json/tree/v2.5.1 Source of file * https://github.com/Krinkle/jquery-json/blob/v2.5.1/src/jquery.json.js difference between 2.4.0 and 2.5.1 * (#66) build: Switch to UglifyJS for better minification (2.3kb -> 1.9kb). * Published to npm. * Compatible with jQuery 1.11. * Moved project from Google Code to GitHub: https://github.com/Krinkle/jquery-json. Change-Id: I809b473266f332b15f0bae337998b2f70d07c528 --- M resources/lib/jquery/jquery.json.js 1 file changed, 5 insertions(+), 4 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core refs/changes/67/158867/1 diff --git a/resources/lib/jquery/jquery.json.js b/resources/lib/jquery/jquery.json.js index 75953f4..264715c 100644 --- a/resources/lib/jquery/jquery.json.js +++ b/resources/lib/jquery/jquery.json.js @@ -1,15 +1,16 @@ /** - * jQuery JSON plugin 2.4.0 + * jQuery JSON plugin v2.5.1 + * https://github.com/Krinkle/jquery-json * * @author Brantley Harris, 2009-2011 - * @author Timo Tijhof, 2011-2012 + * @author Timo Tijhof, 2011-2014 * @source This plugin is heavily influenced by MochiKit's serializeJSON, which is * copyrighted 2005 by Bob Ippolito. * @source Brantley Harris wrote this plugin. It is based somewhat on the JSON.org * website's http://www.json.org/json2.js, which proclaims: * "NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.", a sentiment that * I uphold. - * @license MIT License <http://www.opensource.org/licenses/mit-license.php> + * @license MIT License <http://opensource.org/licenses/MIT> */ (function ($) { 'use strict'; @@ -21,7 +22,7 @@ '\n': '\\n', '\f': '\\f', '\r': '\\r', - '"' : '\\"', + '"': '\\"', '\\': '\\\\' }, hasOwn = Object.prototype.hasOwnProperty; -- To view, visit https://gerrit.wikimedia.org/r/158867 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I809b473266f332b15f0bae337998b2f70d07c528 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/core Gerrit-Branch: master Gerrit-Owner: Paladox <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
