Focus the search field when typing '/' or alphanumeric characters on mobile

Rel: #638
pull/647/head
Thibaut Courouble 8 years ago
parent 48d85f1124
commit 9adf4e2d9f

@ -14,7 +14,7 @@ class app.views.Search extends app.View
submit: 'onSubmit' submit: 'onSubmit'
@shortcuts: @shortcuts:
typing: 'autoFocus' typing: 'focus'
altG: 'google' altG: 'google'
altS: 'stackoverflow' altS: 'stackoverflow'
@ -34,8 +34,7 @@ class app.views.Search extends app.View
$.on window, 'focus', @autoFocus $.on window, 'focus', @autoFocus
return return
focus: -> focus: =>
@delay =>
@input.focus() unless document.activeElement is @input @input.focus() unless document.activeElement is @input
return return

Loading…
Cancel
Save