Version 1
[yaffs-website] / vendor / geedmo / yamm3 / demo / components / jquery / src / ajax / parseJSON.js
diff --git a/vendor/geedmo/yamm3/demo/components/jquery/src/ajax/parseJSON.js b/vendor/geedmo/yamm3/demo/components/jquery/src/ajax/parseJSON.js
new file mode 100644 (file)
index 0000000..3a96d15
--- /dev/null
@@ -0,0 +1,13 @@
+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;
+
+});