mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-05 03:05:02 +08:00
fix(xgplayer): 修复 sniffer 在部分 iPad 中判断错误的问题
This commit is contained in:
parent
a88203d6d4
commit
e9c87af0ca
@ -1,4 +1,6 @@
|
||||
# 版本更新记录
|
||||
## 3.0.11-alpha.0
|
||||
>* fix(xgplayer): 修复 sniffer 在部分 iPad 中判断错误的问题
|
||||
## 3.0.10
|
||||
>* fix(xgplayer): 播放器销毁mobile插件事件解绑不全问题修复
|
||||
>* fix(xgplayer): 初始videoPo.rotate修改为-1
|
||||
|
@ -79,13 +79,13 @@ const sniffer = {
|
||||
const isSymbian = /(?:SymbianOS)/.test(ua) || isWindowsPhone
|
||||
const isAndroid = /(?:Android)/.test(ua)
|
||||
const isFireFox = /(?:Firefox)/.test(ua)
|
||||
const isIpad = /(?:iPad|PlayBook)/.test(ua) || (navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1)
|
||||
const isTablet =
|
||||
/(?:iPad|PlayBook)/.test(ua) ||
|
||||
isIpad ||
|
||||
(isAndroid && !/(?:Mobile)/.test(ua)) ||
|
||||
(isFireFox && /(?:Tablet)/.test(ua))
|
||||
const isPhone = /(?:iPhone)/.test(ua) && !isTablet
|
||||
const isPc = !isPhone && !isAndroid && !isSymbian && !isTablet
|
||||
const isIpad = /(?:iPad|PlayBook)/.test(ua)
|
||||
return {
|
||||
isTablet,
|
||||
isPhone,
|
||||
|
Loading…
x
Reference in New Issue
Block a user