fix(xgplayer): 修复 sniffer 在部分 iPad 中判断错误的问题

This commit is contained in:
liushanyuan 2023-11-16 11:57:08 +08:00 committed by liushanyuan
parent a88203d6d4
commit e9c87af0ca
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,6 @@
# 版本更新记录
## 3.0.11-alpha.0
>* fix(xgplayer): 修复 sniffer 在部分 iPad 中判断错误的问题
## 3.0.10
>* fix(xgplayer): 播放器销毁mobile插件事件解绑不全问题修复
>* fix(xgplayer): 初始videoPo.rotate修改为-1

View File

@ -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,