1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-07-12 13:15:33 +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 = [],
formData = [],
barType = null;
formData = [],
barType = null;
chrome.runtime.sendMessage({
command: 'bgCollectPageDetails'
});
setTimeout(function () {
chrome.runtime.sendMessage({
command: 'bgCollectPageDetails'
});
}, 1000);
chrome.runtime.onMessage.addListener(function (msg, sender, sendResponse) {
if (msg.command === 'openNotificationBar') {
@ -161,4 +163,4 @@
break;
}
}
})();
});