From 71a616890bb3557764d6a6731fd3ec9e63220a5b Mon Sep 17 00:00:00 2001 From: Sam Stephenson Date: Tue, 19 Apr 2005 11:16:50 +0000 Subject: Update to Prototype 1.2.1 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1228 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/html/javascripts/prototype.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'railties/html/javascripts/prototype.js') diff --git a/railties/html/javascripts/prototype.js b/railties/html/javascripts/prototype.js index dd5c9b0f93..72b141ac4a 100644 --- a/railties/html/javascripts/prototype.js +++ b/railties/html/javascripts/prototype.js @@ -1,4 +1,4 @@ -/* Prototype: an object-oriented Javascript library, version 1.2.0 +/* Prototype: an object-oriented Javascript library, version 1.2.1 * (c) 2005 Sam Stephenson * * THIS FILE IS AUTOMATICALLY GENERATED. When sending patches, please diff @@ -11,7 +11,7 @@ /*--------------------------------------------------------------------------*/ var Prototype = { - Version: '1.2.0' + Version: '1.2.1' } var Class = { @@ -184,7 +184,8 @@ Ajax.Request.prototype = (new Ajax.Base()).extend({ if (this.options.method == 'get') url += '?' + this.options.parameters + '&_='; - this.transport.open(this.options.method, url, true); + this.transport.open(this.options.method, url, + this.options.asynchronous); if (this.options.asynchronous) { this.transport.onreadystatechange = this.onStateChange.bind(this); -- cgit v1.2.3