1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-11-02 08:30:14 +01:00

check tab

This commit is contained in:
Kyle Spearrin 2017-08-30 08:28:48 -04:00
parent fcb7972fca
commit 7ce6634120

View File

@ -402,6 +402,10 @@ function messageTab(tabId, command, data, callback) {
}
function collectPageDetailsForContentScript(tab, sender) {
if (!tab || !tab.id) {
return;
}
chrome.tabs.sendMessage(tab.id, { command: 'collectPageDetails', tab: tab, sender: sender }, function () {
});
}