diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-10-14 02:39:48 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-10-14 02:39:48 +0000 |
commit | 5ac72678273bdd7abd2b08c3fbf1631bf00dc977 (patch) | |
tree | 2c465e0d6113e5e9919cdf55f20d91bed161c731 /misc/progress.js | |
parent | 370de93087d7343653bdca3cf1bc7b1a171d514a (diff) | |
download | drupal-5ac72678273bdd7abd2b08c3fbf1631bf00dc977.tar.gz drupal-5ac72678273bdd7abd2b08c3fbf1631bf00dc977.zip |
- #88439: Update jQuery in core to 1.0.2
- #88642: Change drupal.js function separators to semi-colons.
Diffstat (limited to 'misc/progress.js')
-rw-r--r-- | misc/progress.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/progress.js b/misc/progress.js index 1c2e93f05ac..3fa4c629c5f 100644 --- a/misc/progress.js +++ b/misc/progress.js @@ -69,9 +69,9 @@ Drupal.progressBar.prototype.sendPing = function () { $.ajax({ type: this.method, url: this.uri, - success: function (xmlhttp) { + success: function (data) { // Parse response - var progress = Drupal.parseJson(xmlhttp.responseText); + var progress = Drupal.parseJson(data); // Display errors if (progress.status == 0) { pb.displayError(progress.data); |