1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00

Use correct element id fenix popup panel

This commit is contained in:
Raymond Hill 2020-02-23 12:16:50 -05:00
parent 84635ad38d
commit d16ac963ef
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -44,7 +44,7 @@ let dfPaneVisibleStored;
vAPI.localStorage.getItemAsync('popupFirewallPane').then(value => {
dfPaneVisibleStored = value === true || value === 'true';
if ( dfPaneVisibleStored ) {
document.getElementById('panes').classList.add('dfEnabled');
document.getElementById('main').classList.add('dfEnabled');
}
});