summaryrefslogtreecommitdiff
path: root/resources/src/jquery.json-deprecate.js
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2014-12-27 15:41:37 +0100
committerPierre Schmitz <pierre@archlinux.de>2014-12-31 11:43:28 +0100
commitc1f9b1f7b1b77776192048005dcc66dcf3df2bfb (patch)
tree2b38796e738dd74cb42ecd9bfd151803108386bc /resources/src/jquery.json-deprecate.js
parentb88ab0086858470dd1f644e64cb4e4f62bb2be9b (diff)
Update to MediaWiki 1.24.1
Diffstat (limited to 'resources/src/jquery.json-deprecate.js')
-rw-r--r--resources/src/jquery.json-deprecate.js8
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 ) );