Move parsing methods to their own files (separates manipulation dependency from core)

This commit is contained in:
Timmy Willison
2013-09-08 21:05:07 -04:00
parent eb9cbfcaf6
commit 99c123b159
7 changed files with 82 additions and 58 deletions

8
src/ajax/parseJSON.js Normal file
View File

@@ -0,0 +1,8 @@
define([
"../core"
], function( jQuery ) {
jQuery.parseJSON = JSON.parse;
return jQuery.parseJSON;
});