File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -6512,9 +6512,6 @@ const EasyCoder_Browser = {
6512
6512
BlackBerry : function ( ) {
6513
6513
return navigator . userAgent . match ( / B l a c k B e r r y / i) ;
6514
6514
} ,
6515
- Chrome : function ( ) {
6516
- return navigator . userAgent . match ( / c h r o m e | c h r o m i u m | c r i o s / i) ;
6517
- } ,
6518
6515
iOS : function ( ) {
6519
6516
return navigator . userAgent . match ( / i P h o n e | i P a d | i P o d / i) ;
6520
6517
} ,
@@ -6525,7 +6522,7 @@ const EasyCoder_Browser = {
6525
6522
return navigator . userAgent . match ( / I E M o b i l e / i) || navigator . userAgent . match ( / W P D e s k t o p / i) ;
6526
6523
} ,
6527
6524
any : function ( ) {
6528
- return ( isMobile . Android ( ) || isMobile . BlackBerry ( ) || isMobile . Chrome ( )
6525
+ return ( isMobile . Android ( ) || isMobile . BlackBerry ( )
6529
6526
|| isMobile . iOS ( ) || isMobile . Opera ( ) || isMobile . Windows ( ) ) ;
6530
6527
}
6531
6528
} ;
Original file line number Diff line number Diff line change @@ -3132,9 +3132,6 @@ const EasyCoder_Browser = {
3132
3132
BlackBerry : function ( ) {
3133
3133
return navigator . userAgent . match ( / B l a c k B e r r y / i) ;
3134
3134
} ,
3135
- Chrome : function ( ) {
3136
- return navigator . userAgent . match ( / c h r o m e | c h r o m i u m | c r i o s / i) ;
3137
- } ,
3138
3135
iOS : function ( ) {
3139
3136
return navigator . userAgent . match ( / i P h o n e | i P a d | i P o d / i) ;
3140
3137
} ,
@@ -3145,7 +3142,7 @@ const EasyCoder_Browser = {
3145
3142
return navigator . userAgent . match ( / I E M o b i l e / i) || navigator . userAgent . match ( / W P D e s k t o p / i) ;
3146
3143
} ,
3147
3144
any : function ( ) {
3148
- return ( isMobile . Android ( ) || isMobile . BlackBerry ( ) || isMobile . Chrome ( )
3145
+ return ( isMobile . Android ( ) || isMobile . BlackBerry ( )
3149
3146
|| isMobile . iOS ( ) || isMobile . Opera ( ) || isMobile . Windows ( ) ) ;
3150
3147
}
3151
3148
} ;
You can’t perform that action at this time.
0 commit comments