File tree Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -352,6 +352,10 @@ isIE = null
352
352
$ .isIE = ->
353
353
isIE ?= navigator .userAgent ? .indexOf (' MSIE' ) >= 0 || navigator .userAgent ? .indexOf (' rv:11.0' ) >= 0
354
354
355
+ isChromeForAndroid = null
356
+ $ .isChromeForAndroid = ->
357
+ isChromeForAndroid ?= navigator .userAgent ? .indexOf (' Android' ) >= 0 && / Chrome\/ ([. 0-9 ] )+ Mobile/ .test (navigator .userAgent )
358
+
355
359
isAndroid = null
356
360
$ .isAndroid = ->
357
361
isAndroid ?= navigator .userAgent ? .indexOf (' Android' ) >= 0
Original file line number Diff line number Diff line change @@ -88,23 +88,27 @@ class app.views.SearchScope extends app.View
88
88
@ trigger ' change' , null , previousDoc
89
89
return
90
90
91
+ doScopeSearch : (event ) =>
92
+ @ search @input .value [0 ... @input .selectionStart ]
93
+ $ .stopEvent (event) if @doc
94
+ return
95
+
91
96
onKeydown : (event ) =>
92
97
if event .which is 8 # backspace
93
98
if @doc and not @input .value
94
99
$ .stopEvent (event)
95
100
@ reset ()
96
- else if not @doc and @input .value
101
+ else if not @doc and @input .value and not $ . isChromeForAndroid ()
97
102
return if event .ctrlKey or event .metaKey or event .altKey or event .shiftKey
98
103
if event .which is 9 or # tab
99
104
(event .which is 32 and app .isMobile ()) # space
100
- @ search @input .value [0 ... @input .selectionStart ]
101
- $ .stopEvent (event) if @doc
105
+ @ doScopeSearch (event)
102
106
return
103
107
104
108
onTextInput : (event ) =>
105
- if event . data == ' ' and app . isMobile ()
106
- @ search @input .value [ 0 ... @input . selectionStart ]
107
- $ . stopEvent (event) if @doc
109
+ return unless $ . isChromeForAndroid ()
110
+ if not @doc and @input .value and event . data == ' '
111
+ @ doScopeSearch (event)
108
112
return
109
113
110
114
extractHashValue : ->
You can’t perform that action at this time.
0 commit comments