1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 05:13:29 +00:00

check for chrome.webRequest.onAuthRequired avail

This commit is contained in:
Kyle Spearrin
2017-09-15 09:47:47 -04:00
parent 1ea07a6ced
commit a260d269ec

View File

@@ -230,6 +230,7 @@ var bg_isBackground = true,
}
});
if (chrome.webRequest && chrome.webRequest.onAuthRequired) {
chrome.webRequest.onAuthRequired.addListener(function (details, callback) {
if (!details.url || pendingAuthRequests.indexOf(details.requestId) != -1) {
if (callback) {
@@ -295,6 +296,7 @@ var bg_isBackground = true,
pendingAuthRequests.splice(i, 1);
}
}
}
var buildingContextMenu = false;
function buildContextMenu(callback) {