buttons: Set min-width of button groups and icon buttons
[mediawiki.git] / resources / src / jquery.json-deprecate.js
blobf38decd9a0b27a6c78d0a47f8dca170d88fbe2b1
1 ( function ( mw, $ ) {
2         // @deprecated since 1.24.  The 'jquery.json' module will be removed in MW 1.25.  Use the 'json' module.
4         mw.log.deprecate( $, 'toJSON', $.toJSON, 'Use JSON.stringify instead (module "json" for polyfill).' );
5         mw.log.deprecate( $, 'evalJSON', $.evalJSON, 'Use JSON.parse instead (module "json" for polyfill).' );
6         mw.log.deprecate( $, 'secureEvalJSON', $.secureEvalJSON, 'Use JSON.parse instead (module "json" for polyfill).' );
7         mw.log.deprecate( $, 'quoteString', $.quoteString, 'Use JSON.stringify instead (module "json" for polyfill).' );
8 }( mediaWiki, jQuery ) );