From 90afb92599e5bece7b8e415a43e9338e4ea73bcd Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 6 Nov 2016 14:27:46 +0100 Subject: [PATCH] Method attribute value fix I don't know why this is happening but this seems to return the correct value. --- Views/FormView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Views/FormView.js b/Views/FormView.js index a02f043..77ea653 100644 --- a/Views/FormView.js +++ b/Views/FormView.js @@ -265,7 +265,7 @@ { this.clean(); - this.method = document.getElementById(this.id).method; + this.method = document.getElementById(this.id).attributes['method'].value; this.action = document.getElementById(this.id).action; let elements = this.getFormElements(),