Haxe 3.1.3 fix

This commit is contained in:
Joshua Granick
2015-08-13 09:47:59 -07:00
parent ad54746a55
commit 06e4ccafad

View File

@@ -7,10 +7,10 @@ import js.html.DivElement;
#if (haxe_ver >= 3.2) #if (haxe_ver >= 3.2)
import js.html.Element; import js.html.Element;
import js.html.FocusEvent; import js.html.FocusEvent;
import js.html.InputElement;
#else #else
import js.html.HtmlElement; import js.html.HtmlElement;
#end #end
import js.html.InputElement;
import js.html.InputEvent; import js.html.InputEvent;
import js.html.MouseEvent; import js.html.MouseEvent;
import js.html.TouchEvent; import js.html.TouchEvent;
@@ -23,6 +23,7 @@ import lime.ui.Window;
#if (haxe_ver < 3.2) #if (haxe_ver < 3.2)
typedef FocusEvent = js.html.Event; typedef FocusEvent = js.html.Event;
typedef InputElement = Dynamic;
#end #end