mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
13 lines
222 B
JavaScript
13 lines
222 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;
|
|
|
|
});
|