cgit

commit 98abe5bb9e6297a5dcbae206e00352c8630d922e

Author: Ville Skyttä <ville.skytta@iki.fi>

ui-shared: use type='search' for the search box

Signed-off-by: Ville Skyttä <ville.skytta@iki.fi>

 ui-shared.c | 4 ++--


diff --git a/ui-shared.c b/ui-shared.c
index 07c78a517579650e0aa27c22228ebb46d54f6293..9d8f66b9fab89ad63e5bfaac22eb6956567f10dd 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -1027,7 +1027,7 @@ 		html_option("author", "author", ctx.qry.grep);
 		html_option("committer", "committer", ctx.qry.grep);
 		html_option("range", "range", ctx.qry.grep);
 		html("</select>\n");
-		html("<input class='txt' type='text' size='10' name='q' value='");
+		html("<input class='txt' type='search' size='10' name='q' value='");
 		html_attr(ctx.qry.search);
 		html("'/>\n");
 		html("<input type='submit' value='search'/>\n");
@@ -1042,7 +1042,7 @@ 		html("");
 		html("<form method='get' action='");
 		html_attr(currenturl);
 		html("'>\n");
-		html("<input type='text' name='q' size='10' value='");
+		html("<input type='search' name='q' size='10' value='");
 		html_attr(ctx.qry.search);
 		html("'/>\n");
 		html("<input type='submit' value='search'/>\n");