Update createGlobalEventBridge.js

Other users seem to be experiencing issues with Audio. Removing it may  not be the correct action, instead exposing the API may be the correct action.
This commit is contained in:
Armored-Dragon 2023-06-24 13:27:21 -05:00 committed by GitHub
parent 57ab4366d4
commit de15b30e2d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,6 +33,30 @@ var EventBridge;
var tempEventBridge = EventBridge;
EventBridge = channel.objects.eventBridge;
// TODO: These event listeners cause issues. Most likely the function is not being exposed to this scope. This may be causing issues!
// To be able to update the state of the output device selection for every element added to the DOM
// we need to listen to events that might precede the addition of this elements.
// A more robust hack will be to add a setInterval that look for DOM changes every 100-300 ms (low performance?)
// window.addEventListener("load",function(event) {
// setTimeout(function() {
// EventBridge.forceHtmlAudioOutputDeviceUpdate();
// }, 1200);
// }, false);
// document.addEventListener("click",function(){
// setTimeout(function() {
// EventBridge.forceHtmlAudioOutputDeviceUpdate();
// }, 1200);
// }, false);
// document.addEventListener("change",function(){
// setTimeout(function() {
// EventBridge.forceHtmlAudioOutputDeviceUpdate();
// }, 1200);
// }, false);
tempEventBridge._callbacks.forEach(function (callback) {
EventBridge.scriptEventReceived.connect(callback);
});