summaryrefslogtreecommitdiffstats
path: root/js/vendor/jquery/src/ajax/parseJSON.js
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-03-25 20:19:57 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2016-03-25 20:19:57 +0100
commitf2a65b0a4aa1cd6448ec5236190dcdf1f0eb12c4 (patch)
tree5be26b5c74561b59d5662046fe8ee82c08c120cd /js/vendor/jquery/src/ajax/parseJSON.js
parent8a58b145cf7d05d6c73043700b27813125d9a88f (diff)
remove compiled js and 3rdparty deps from the repo
Diffstat (limited to 'js/vendor/jquery/src/ajax/parseJSON.js')
-rw-r--r--js/vendor/jquery/src/ajax/parseJSON.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/js/vendor/jquery/src/ajax/parseJSON.js b/js/vendor/jquery/src/ajax/parseJSON.js
deleted file mode 100644
index 11918b06d..000000000
--- a/js/vendor/jquery/src/ajax/parseJSON.js
+++ /dev/null
@@ -1,13 +0,0 @@
-define( [
- "../core"
-], function( jQuery ) {
-
-// Support: Android 2.3
-// Workaround failure to string-cast null input
-jQuery.parseJSON = function( data ) {
- return JSON.parse( data + "" );
-};
-
-return jQuery.parseJSON;
-
-} );