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 => { vAPI.localStorage.getItemAsync('popupFirewallPane').then(value => {
dfPaneVisibleStored = value === true || value === 'true'; dfPaneVisibleStored = value === true || value === 'true';
if ( dfPaneVisibleStored ) { if ( dfPaneVisibleStored ) {
document.getElementById('panes').classList.add('dfEnabled'); document.getElementById('main').classList.add('dfEnabled');
} }
}); });