mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-05 11:18:46 +08:00
fix: 🐛 (xgplayer) 修复弹幕插件在无controls时,初始化报错问题
This commit is contained in:
parent
077335d919
commit
dd6356e95d
@ -167,7 +167,7 @@ class Danmu extends Plugin {
|
||||
|
||||
registerExtIcons () {
|
||||
const { player, config } = this
|
||||
if (config.panel) {
|
||||
if (config.panel && player.controls) {
|
||||
const panelOptions = {
|
||||
config: {
|
||||
onChangeset: (set) => {
|
||||
@ -178,7 +178,7 @@ class Danmu extends Plugin {
|
||||
this.danmuPanel = player.controls.registerPlugin(DanmuPanel, panelOptions, DanmuPanel.pluginName)
|
||||
}
|
||||
const { switchConfig } = config
|
||||
if (!config.closeDefaultBtn) {
|
||||
if (!config.closeDefaultBtn && player.controls) {
|
||||
const buttonOptions = {
|
||||
config: {
|
||||
onSwitch: (event, isOpen) => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user