Adding autofocus to Title

--HG--
branch : 1.x
This commit is contained in:
Sebastien Ros
2012-04-30 10:34:54 -07:00
parent 0690cc53d4
commit 39dedd61e7

View File

@@ -2,6 +2,6 @@
<fieldset>
@Html.LabelFor(m => m.Title, T("Title"))
@Html.TextBoxFor(m => m.Title, new { @class = "large text" })
@Html.TextBoxFor(m => m.Title, new { @class = "large text", autofocus = "autofocus" })
<span class="hint">@T("You must provide a unique title for this content item")</span>
</fieldset>