diff options
Diffstat (limited to 'resources/src/jquery.json-deprecate.js')
-rw-r--r-- | resources/src/jquery.json-deprecate.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/resources/src/jquery.json-deprecate.js b/resources/src/jquery.json-deprecate.js new file mode 100644 index 00000000..f38decd9 --- /dev/null +++ b/resources/src/jquery.json-deprecate.js @@ -0,0 +1,8 @@ +( function ( mw, $ ) { + // @deprecated since 1.24. The 'jquery.json' module will be removed in MW 1.25. Use the 'json' module. + + mw.log.deprecate( $, 'toJSON', $.toJSON, 'Use JSON.stringify instead (module "json" for polyfill).' ); + mw.log.deprecate( $, 'evalJSON', $.evalJSON, 'Use JSON.parse instead (module "json" for polyfill).' ); + mw.log.deprecate( $, 'secureEvalJSON', $.secureEvalJSON, 'Use JSON.parse instead (module "json" for polyfill).' ); + mw.log.deprecate( $, 'quoteString', $.quoteString, 'Use JSON.stringify instead (module "json" for polyfill).' ); +}( mediaWiki, jQuery ) ); |