i4way-dash/.svn/pristine/d7/d7f244007c881e4fcb87facfdc5...

14 lines
222 B
Plaintext

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;
});