mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 01:52:58 +02:00
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:
parent
57ab4366d4
commit
de15b30e2d
1 changed files with 24 additions and 0 deletions
|
@ -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);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue