1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-08-07 20:03:16 +02:00

wait for docuement content to load before initializing notification bar

This commit is contained in:
Kyle Spearrin 2016-12-30 16:22:32 -05:00
parent cd4ef192f6
commit 020ea1680a

View File

@ -1,11 +1,13 @@
!(function () { document.addEventListener('DOMContentLoaded', function (event) {
var pageDetails = [], var pageDetails = [],
formData = [], formData = [],
barType = null; barType = null;
chrome.runtime.sendMessage({ setTimeout(function () {
command: 'bgCollectPageDetails' chrome.runtime.sendMessage({
}); command: 'bgCollectPageDetails'
});
}, 1000);
chrome.runtime.onMessage.addListener(function (msg, sender, sendResponse) { chrome.runtime.onMessage.addListener(function (msg, sender, sendResponse) {
if (msg.command === 'openNotificationBar') { if (msg.command === 'openNotificationBar') {
@ -161,4 +163,4 @@
break; break;
} }
} }
})(); });