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

changes re #993 for firefox platform

This commit is contained in:
gorhill 2015-03-11 19:55:27 -04:00
parent 60e36c0ffe
commit e3959c3610

View File

@ -57,14 +57,22 @@ vAPI.download = function(details) {
a.dispatchEvent(new MouseEvent('click')); a.dispatchEvent(new MouseEvent('click'));
return; return;
} }
var messager = vAPI.messaging.channel('_download');
messager.send({ var request = {
what: 'gotoURL', what: 'gotoURL',
details: { details: {
url: details.url, url: details.url,
index: -1 index: -1
} }
}); };
if ( vAPI.isMainProcess ) {
vAPI.tabs.open(request);
return;
}
var messager = vAPI.messaging.channel('_download');
messager.send(request);
messager.close(); messager.close();
}; };