We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d80c94a commit dc7582eCopy full SHA for dc7582e
src/playercomponent.js
@@ -9,6 +9,7 @@ import PluginData from "./plugindata"
9
import PluginEnums from "./pluginenums"
10
import Plugins from "./plugins"
11
import MediaPlayerBase from "./playbackstrategy/modifiers/mediaplayerbase"
12
+import DebugTool from "./debugger/debugtool"
13
14
function PlayerComponent(
15
playbackElement,
@@ -122,6 +123,8 @@ function PlayerComponent(
122
123
124
setupPauseAfterLoad()
125
return replaceMediaSources(sources).then(() => {
126
+ DebugTool.info(`Source changed. Audio Described ${to ? "on" : "off"}.`)
127
+
128
audioDescribedCallback(to)
129
})
130
}
0 commit comments