aboutsummaryrefslogtreecommitdiffstats
path: root/railties/html
diff options
context:
space:
mode:
authorSam Stephenson <sam@37signals.com>2005-04-19 11:16:50 +0000
committerSam Stephenson <sam@37signals.com>2005-04-19 11:16:50 +0000
commit71a616890bb3557764d6a6731fd3ec9e63220a5b (patch)
tree0b867baefb5a2e437535172a063121a522126afa /railties/html
parent5462358cd397583f3b4cfcdf2933b80dbc48d353 (diff)
downloadrails-71a616890bb3557764d6a6731fd3ec9e63220a5b.tar.gz
rails-71a616890bb3557764d6a6731fd3ec9e63220a5b.tar.bz2
rails-71a616890bb3557764d6a6731fd3ec9e63220a5b.zip
Update to Prototype 1.2.1
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1228 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/html')
-rw-r--r--railties/html/javascripts/prototype.js7
1 files changed, 4 insertions, 3 deletions
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 <sam@conio.net>
*
* 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);