File tree 2 files changed +18
-5
lines changed
2 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,16 @@ export const ADSENSE_CLIENT = 'ca-pub-7162313874228987';
32
32
33
33
export const ADD_SLOT_SETTINGS_TOP = '5250438005' ;
34
34
35
- export const IS_BROWSING_FROM_APPLE = / i P a d | i P h o n e | i P o d | M a c / . test (
36
- navigator . userAgent
37
- ) ;
35
+ const userAgent = navigator . userAgent ;
36
+
37
+ export const IS_BROWSING_FROM_APPLE = / i P a d | i P h o n e | i P o d | M a c / . test ( userAgent ) ;
38
+
39
+ export const IS_BROWSING_FROM_APPLE_TOUCH =
40
+ IS_BROWSING_FROM_APPLE && 'ontouchend' in document ;
41
+
42
+ export const IS_BROWSING_FROM_SAFARI =
43
+ userAgent . indexOf ( 'Safari' ) > - 1 &&
44
+ userAgent . indexOf ( 'Chrome' ) === - 1 &&
45
+ ! navigator . userAgent . match ( / c r i o s / i) &&
46
+ ! navigator . userAgent . match ( / f x i o s / i) &&
47
+ ! navigator . userAgent . match ( / O p e r a | O P T \/ / ) ;
Original file line number Diff line number Diff line change @@ -4,7 +4,9 @@ import API from '../../api';
4
4
import {
5
5
AZURE_SPEECH_SERVICE_REGION ,
6
6
AZURE_SPEECH_SUBSCR_KEY ,
7
- IS_BROWSING_FROM_APPLE
7
+ IS_BROWSING_FROM_APPLE ,
8
+ IS_BROWSING_FROM_APPLE_TOUCH ,
9
+ IS_BROWSING_FROM_SAFARI
8
10
} from '../../constants' ;
9
11
import { getStore } from '../../store' ;
10
12
@@ -267,7 +269,8 @@ const tts = {
267
269
msg . rate = rate ;
268
270
msg . volume = volume ;
269
271
msg . onend = onend ;
270
- synth . cancel ( ) ;
272
+ if ( IS_BROWSING_FROM_SAFARI || IS_BROWSING_FROM_APPLE_TOUCH )
273
+ synth . cancel ( ) ;
271
274
synth . speak ( msg ) ;
272
275
}
273
276
}
You can’t perform that action at this time.
0 commit comments