Nicolas Cannasse 18 years ago
parent
commit
f326dd8348
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/js/Dom.hx

+ 1 - 1
std/js/Dom.hx

@@ -25,7 +25,7 @@
 package js;
 package js;
 
 
 // allow both indexed and dot accessses
 // allow both indexed and dot accessses
-extern class HtmlCollection<T> extends ArrayAccess<T>, implements Dynamic<T> {
+extern class HtmlCollection<T> implements ArrayAccess<T>, implements Dynamic<T> {
 	var length(default,null) : Int;
 	var length(default,null) : Int;
 }
 }