Prechádzať zdrojové kódy

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

Rel: #638
Thibaut Courouble 8 rokov pred
rodič
commit
9adf4e2d9f

+ 3 - 4
assets/javascripts/views/search/search.coffee

@@ -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,9 +34,8 @@ class app.views.Search extends app.View
     $.on window, 'focus', @autoFocus
     $.on window, 'focus', @autoFocus
     return
     return
 
 
-  focus: ->
-    @delay =>
-      @input.focus() unless document.activeElement is @input
+  focus: =>
+    @input.focus() unless document.activeElement is @input
     return
     return
 
 
   autoFocus: =>
   autoFocus: =>