I am trying to use
the html5 "autofocus" attribute.
= f.input :email, :required => false, :input_html => { :autofocus => true }= f.input :email, :required => false, :input_html => { :autofocus => "true" }
Both result in
<input autofocus="autofocus" class="string email optional" id="person_email" maxlength="255" name="person[email]" size="50" type="email">
What do I need to do here? Report a bug?
Also, html5 doesn't require even having the "='true' "; I should just be able to put "autofocus". Any plans to support that?