From 96b41fb9b7a1371b6060098adbe25f6c76379124 Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Wed, 22 Apr 2015 13:40:52 +0200 Subject: [PATCH] Added autofocus to index creation screen. --- .../Modules/Orchard.Indexing/Views/Admin/Create.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Orchard.Web/Modules/Orchard.Indexing/Views/Admin/Create.cshtml b/src/Orchard.Web/Modules/Orchard.Indexing/Views/Admin/Create.cshtml index 9a83678e1..b02b67b4f 100644 --- a/src/Orchard.Web/Modules/Orchard.Indexing/Views/Admin/Create.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Indexing/Views/Admin/Create.cshtml @@ -4,7 +4,7 @@ @using(Html.BeginFormAntiForgeryPost()) {
- @Html.TextBox("id", Model, new { @class= "text medium"}) + @Html.TextBox("id", Model, new { @class = "text medium", autofocus = "autofocus" }) @T("The technical name of the index to create. Must contain letters and numbers only.")