diff --git a/js/chromium.js b/js/chromium.js index 2912d3c61..ce9fcfb05 100644 --- a/js/chromium.js +++ b/js/chromium.js @@ -119,7 +119,6 @@ }, drawAttention: function(window_id) { - console.log('draw attention'); if (chrome.app.window) { var w = chrome.app.window.get(window_id); if (w) { @@ -130,7 +129,6 @@ }, clearAttention: function(window_id) { - console.log('clear attention'); if (chrome.app.window) { var w = chrome.app.window.get(window_id); if (w) { diff --git a/js/panel_controller.js b/js/panel_controller.js index dae72394d..0df0a853b 100644 --- a/js/panel_controller.js +++ b/js/panel_controller.js @@ -23,10 +23,12 @@ clearInterval(window.keepClear); delete window.keepClear; } + console.log('draw attention'); extension.windows.drawAttention(inboxWindowId); } }; window.clearAttention = function() { + console.log('clear attention'); if (window.keepClear) { clearInterval(window.keepClear); delete window.keepClear;