Merge "QA: Remove logic for inexistant "wpvector-collapsiblenav" option"
[lhc/web/wiklou.git] / resources / src / jquery.json-deprecate.js
1 ( function ( mw, $ ) {
2 // @deprecated since 1.24. The 'jquery.json' module will be removed in MW 1.25. Use the 'json' module.
3
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 ) );