Window ids should be strings

A warning is issued when a non-string window id was passed to
extension.windows.focus.
pull/749/head
lilia 11 years ago
parent 7bf1d41184
commit fa3e1ee94f

@ -114,7 +114,7 @@
/* Inbox window controller */ /* Inbox window controller */
var inboxOpened = false; var inboxOpened = false;
var inboxWindowId = 0; var inboxWindowId = 'inbox';
window.openInbox = function() { window.openInbox = function() {
if (inboxOpened === false) { if (inboxOpened === false) {
inboxOpened = true; inboxOpened = true;

Loading…
Cancel
Save