1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-18 08:52:26 +02:00

fix #168: Firefox for Android does not support the windows API

This commit is contained in:
Raymond Hill 2018-08-14 18:47:59 -04:00
parent 9130a026b1
commit 60ee64e4bb
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -490,7 +490,9 @@ vAPI.tabs.open = function(details) {
};
// Open in a standalone window
if ( details.popup === true ) {
// https://github.com/uBlockOrigin/uBlock-issues/issues/168#issuecomment-413038191
// Not all platforms support browser.windows API.
if ( details.popup === true && chrome.windows instanceof Object ) {
chrome.windows.create({ url: details.url, type: 'popup' });
return;
}