fix(xgplayer): 修复pad端列表按钮交互异常问题

This commit is contained in:
hongqiongxing 2024-04-30 12:59:24 +08:00 committed by hongqx
parent b7aa4aa524
commit b8dd75b7a3

View File

@ -74,7 +74,7 @@ export default class OptionsIcon extends Plugin {
const { config } = this
this.initIcons()
IS_MOBILE = IS_MOBILE || this.domEventType === 'touch'
if (IS_MOBILE && config.listType === LIST_TYPES.DEFAULT) {
if (IS_MOBILE && Sniffer.device === 'mobile' && config.listType === LIST_TYPES.DEFAULT) {
config.listType = LIST_TYPES.SIDE
}