diff options
Diffstat (limited to 'railties/html')
-rw-r--r-- | railties/html/javascripts/prototype.js | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/railties/html/javascripts/prototype.js b/railties/html/javascripts/prototype.js index 18027b3e91..5042e3304d 100644 --- a/railties/html/javascripts/prototype.js +++ b/railties/html/javascripts/prototype.js @@ -197,19 +197,13 @@ Ajax.Updater.prototype = (new Ajax.Base()).extend({ }, updateContent: function() { - this.container.innerHTML = this.request.transport.responseText; - - if (this.options.insertion) { + if (!this.options.insertion) { this.container.innerHTML = this.request.transport.responseText; } else { new this.options.insertion(this.container, this.request.transport.responseText); } - if (this.options.effect) { - new this.options.effect(this.container); - } - if (this.onComplete) { setTimeout((function() {this.onComplete(this.request)}).bind(this), 10); } |