1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

dont focus newly opened logger window: FF webext complains about it and not needed anyway

This commit is contained in:
gorhill 2017-01-07 10:57:16 -05:00
parent 6175a216b7
commit 8d8905aab3

View File

@ -443,11 +443,7 @@ vAPI.tabs.open = function(details) {
// Open in a standalone window
if ( details.popup === true ) {
chrome.windows.create({
url: details.url,
focused: details.active,
type: 'popup'
});
chrome.windows.create({ url: details.url, type: 'popup' });
return;
}