1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00
Raymond Hill 2018-07-20 07:11:21 -04:00
parent efbb24c1cf
commit 87b323fe05
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -396,15 +396,14 @@ var matchBucket = function(url, hostname, bucket, start) {
/******************************************************************************/
µBlock.elementPickerExec = function(tabId, targetElement, zap) {
if ( vAPI.isBehindTheSceneTabId(tabId) ) {
return;
}
if ( vAPI.isBehindTheSceneTabId(tabId) ) { return; }
this.epickerTarget = targetElement || '';
this.epickerZap = zap || false;
this.scriptlets.inject(tabId, 'element-picker');
if ( typeof vAPI.tabs.select === 'function' ) {
vAPI.tabs.select(tabId);
}
vAPI.tabs.injectScript(tabId, {
file: '/js/scriptlets/element-picker.js',
runAt: 'document_end'
});
};
/******************************************************************************/