Skip to content

Commit

Permalink
thanks metafeather, found bad typo in html/form.js that prevented met…
Browse files Browse the repository at this point in the history
…hod from being set correctly
  • Loading branch information
thatcher committed Feb 6, 2010
1 parent be1d41d commit b2416f9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/env.js
Expand Up @@ -5590,7 +5590,7 @@ __extend__(HTMLFormElement.prototype,{
return this.getAttribute('method');

},
set method(action){
set method(method){
this.setAttribute('method', method);

},
Expand Down
2 changes: 1 addition & 1 deletion dist/env.rhino.js
Expand Up @@ -5590,7 +5590,7 @@ __extend__(HTMLFormElement.prototype,{
return this.getAttribute('method');

},
set method(action){
set method(method){
this.setAttribute('method', method);

},
Expand Down
2 changes: 1 addition & 1 deletion dist/html.js
Expand Up @@ -1555,7 +1555,7 @@ __extend__(HTMLFormElement.prototype,{
return this.getAttribute('method');

},
set method(action){
set method(method){
this.setAttribute('method', method);

},
Expand Down
1 change: 1 addition & 0 deletions dist/window.js
Expand Up @@ -281,6 +281,7 @@ Window = function(scope, parent, opener){
return proxy;
});


var __Array__;
if(!scope.Array){
__Array__ = function(){
Expand Down
2 changes: 1 addition & 1 deletion src/html/form.js
Expand Up @@ -46,7 +46,7 @@ __extend__(HTMLFormElement.prototype,{
return this.getAttribute('method');

},
set method(action){
set method(method){
this.setAttribute('method', method);

},
Expand Down

0 comments on commit b2416f9

Please sign in to comment.