From b890a29b3a8cf87f8f67b2d1b057be59d12be10c Mon Sep 17 00:00:00 2001 From: luiscuenca Date: Wed, 29 Nov 2017 19:05:01 -0700 Subject: [PATCH] Clean console log --- interface/resources/html/createGlobalEventBridge.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/interface/resources/html/createGlobalEventBridge.js b/interface/resources/html/createGlobalEventBridge.js index 3355ca87c8..b85aa33e33 100644 --- a/interface/resources/html/createGlobalEventBridge.js +++ b/interface/resources/html/createGlobalEventBridge.js @@ -68,21 +68,18 @@ var EventBridge; window.addEventListener("load",function(event) { setTimeout(function() { EventBridge.forceHtmlAudioOutputDeviceUpdate(); - console.log(":: Window Loaded"); }, 1200); }, false); document.addEventListener("click",function(){ setTimeout(function() { EventBridge.forceHtmlAudioOutputDeviceUpdate(); - console.log(":: Window Clicked"); }, 1200); }, false); document.addEventListener("change",function(){ setTimeout(function() { EventBridge.forceHtmlAudioOutputDeviceUpdate(); - console.log(":: Window Changes"); }, 1200); }, false);