Browse Source

Change type of elements (now HtmlCollection<FormElement>)

Pascal Peridont 19 years ago
parent
commit
3c626600fc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/js/Form.hx

+ 1 - 1
std/js/Form.hx

@@ -26,7 +26,7 @@ package js;
 
 extern class Form extends HtmlDom {
 
-	var elements : HtmlCollection<HtmlDom>;
+	var elements : HtmlCollection<FormElement>;
 
 	var acceptCharset : String;
 	var action : String;