diff options
-rw-r--r-- | actionpack/lib/action_view/helpers/javascripts/prototype.js | 7 | ||||
-rw-r--r-- | railties/html/javascripts/prototype.js | 7 |
2 files changed, 8 insertions, 6 deletions
diff --git a/actionpack/lib/action_view/helpers/javascripts/prototype.js b/actionpack/lib/action_view/helpers/javascripts/prototype.js index dd5c9b0f93..72b141ac4a 100644 --- a/actionpack/lib/action_view/helpers/javascripts/prototype.js +++ b/actionpack/lib/action_view/helpers/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); 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); |