scratch – Blame information for rev 125

Subversion Repositories:
Rev:
Rev Author Line No. Line
125 office 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 });