From c761fb01f4d65574e9644fc8815b5dbd2a4c5c5c Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 10 Mar 2010 15:14:38 +0000 Subject: - Patch #673884 by casey, mfer: optimize Drupal.parseJSON. --- misc/ajax.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'misc/ajax.js') diff --git a/misc/ajax.js b/misc/ajax.js index 785052f7b..3d0357cbc 100644 --- a/misc/ajax.js +++ b/misc/ajax.js @@ -132,7 +132,7 @@ Drupal.ajax = function (base, element, element_settings) { // Sanity check for browser support (object expected). // When using iFrame uploads, responses must be returned as a string. if (typeof response == 'string') { - response = Drupal.parseJson(response); + response = $.parseJson(response); } return ajax.success(response, status); }, -- cgit v1.2.3