summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-10-13 13:46:50 +0000
committerDries Buytaert <dries@buytaert.net>2010-10-13 13:46:50 +0000
commitcf11af686500e727838166e758c211dafd526208 (patch)
treede40040a4d9e200a018713d9c2895ed315779ca6 /misc
parent284f2b11a48b893cbd13d5429ad68d207488e4e6 (diff)
downloadbrdo-cf11af686500e727838166e758c211dafd526208.tar.gz
brdo-cf11af686500e727838166e758c211dafd526208.tar.bz2
- Patch #939860 by rfay, yched: on 2nd ajax call, behaviors are called with empty settings.
Diffstat (limited to 'misc')
-rw-r--r--misc/ajax.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/ajax.js b/misc/ajax.js
index 0dfa42a50..773986ae3 100644
--- a/misc/ajax.js
+++ b/misc/ajax.js
@@ -298,7 +298,7 @@ Drupal.ajax.prototype.success = function (response, status) {
// Remove any response-specific settings so they don't get used on the next
// call by mistake.
- this.settings = {};
+ this.settings = null;
};
/**