fix #3024: regression from 5626b500

This commit is contained in:
gorhill 2017-09-16 07:59:56 -04:00
parent 2c4faaa84d
commit 1e760f9429
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
1 changed files with 3 additions and 7 deletions

View File

@ -69,14 +69,10 @@ var onBlockElement = function(details, tab) {
/******************************************************************************/ /******************************************************************************/
var onTemporarilyAllowLargeMediaElements = function(details, tab) { var onTemporarilyAllowLargeMediaElements = function(details, tab) {
if ( tab === undefined ) { if ( tab === undefined ) { return; }
return;
}
var pageStore = µb.pageStoreFromTabId(tab.id); var pageStore = µb.pageStoreFromTabId(tab.id);
if ( pageStore === null ) { if ( pageStore === null ) { return; }
return; pageStore.temporarilyAllowLargeMediaElements(true);
}
pageStore.temporarilyAllowLargeMediaElements();
}; };
/******************************************************************************/ /******************************************************************************/