mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-09 19:20:50 +08:00
14 lines
224 B
JavaScript
14 lines
224 B
JavaScript
|
|
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;
|
||
|
|
|
||
|
|
} );
|