Skip to content

Commit

Permalink
Officialize uiPopupConfig advanced setting
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Nov 28, 2021
1 parent 217bddb commit 395a4e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/js/background.js
Expand Up @@ -81,7 +81,7 @@ const hiddenSettingsDefault = {
selfieAfter: 3,
strictBlockingBypassDuration: 120,
suspendTabsUntilReady: 'unset',
uiPopupConfig: 'undocumented',
uiPopupConfig: 'unset',
uiFlavor: 'unset',
uiStyles: 'unset',
uiTheme: 'unset',
Expand Down
2 changes: 1 addition & 1 deletion src/js/messaging.js
Expand Up @@ -364,7 +364,7 @@ const popupDataFromTabId = function(tabId, tabTitle) {
tooltipsDisabled: µbus.tooltipsDisabled
};

if ( µbhs.uiPopupConfig !== 'undocumented' ) {
if ( µbhs.uiPopupConfig !== 'unset' ) {
r.uiPopupConfig = µbhs.uiPopupConfig;
}

Expand Down

0 comments on commit 395a4e3

Please sign in to comment.