From 918b2a49ca6ac074bac47f6685cf3a687a4c6212 Mon Sep 17 00:00:00 2001 From: Thomas Park Date: Sat, 1 Nov 2014 21:05:20 -0400 Subject: 3.2.0 -> 3.3.0 --- bower_components/jquery/src/ajax/parseJSON.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bower_components/jquery/src/ajax/parseJSON.js (limited to 'bower_components/jquery/src/ajax/parseJSON.js') diff --git a/bower_components/jquery/src/ajax/parseJSON.js b/bower_components/jquery/src/ajax/parseJSON.js new file mode 100644 index 00000000..3a96d15b --- /dev/null +++ b/bower_components/jquery/src/ajax/parseJSON.js @@ -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; + +}); -- cgit v1.2.3