فهرست منبع

ignore more inputs wrt keystrokes

Nicolas Cannasse 4 سال پیش
والد
کامیت
b69cfcb8e6
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      hide/ui/View.hx

+ 1 - 1
hide/ui/View.hx

@@ -101,7 +101,7 @@ class View<T> extends hide.comp.Component {
 			return true;
 		if( active.nodeName == "INPUT" ) {
 			var type = (""+active.getAttribute("type")).toLowerCase();
-			if( type == "text" || type == "null" )
+			if( type == "text" || type == "null" || type == "number" || type == "password" || type == "date" )
 				return true;
 		}
 		return false;