From 3a494bf2a33084c578290eb9337b1ba22db86206 Mon Sep 17 00:00:00 2001 From: lilia Date: Sat, 16 Jan 2016 17:19:47 -0800 Subject: [PATCH] Log when we draw attention to the window Hopefully help debug spurious cries for window attention. // FREEBIE --- js/panel_controller.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/panel_controller.js b/js/panel_controller.js index db014378e..09a6df0bd 100644 --- a/js/panel_controller.js +++ b/js/panel_controller.js @@ -19,6 +19,7 @@ window.drawAttention = function() { if (inboxOpened && !inboxFocused) { + console.log('draw attention'); extension.windows.drawAttention(inboxWindowId); } };