Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 14217 |
anikendra |
1 |
define([
|
|
|
2 |
"../core"
|
|
|
3 |
], function( jQuery ) {
|
|
|
4 |
|
|
|
5 |
// Support: Android 2.3
|
|
|
6 |
// Workaround failure to string-cast null input
|
|
|
7 |
jQuery.parseJSON = function( data ) {
|
|
|
8 |
return JSON.parse( data + "" );
|
|
|
9 |
};
|
|
|
10 |
|
|
|
11 |
return jQuery.parseJSON;
|
|
|
12 |
|
|
|
13 |
});
|