From 06e4ccafad421cdb286fb890ae3cc3f2c92aeb9d Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Thu, 13 Aug 2015 09:47:59 -0700 Subject: [PATCH] Haxe 3.1.3 fix --- lime/_backend/html5/HTML5Window.hx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lime/_backend/html5/HTML5Window.hx b/lime/_backend/html5/HTML5Window.hx index 57a71baa4..1bb4163be 100644 --- a/lime/_backend/html5/HTML5Window.hx +++ b/lime/_backend/html5/HTML5Window.hx @@ -7,10 +7,10 @@ import js.html.DivElement; #if (haxe_ver >= 3.2) import js.html.Element; import js.html.FocusEvent; +import js.html.InputElement; #else import js.html.HtmlElement; #end -import js.html.InputElement; import js.html.InputEvent; import js.html.MouseEvent; import js.html.TouchEvent; @@ -23,6 +23,7 @@ import lime.ui.Window; #if (haxe_ver < 3.2) typedef FocusEvent = js.html.Event; +typedef InputElement = Dynamic; #end