Merge pull request #220 from lbryio/uri-bar-mobile-setting
add SHOW_URI_BAR_SUGGESTIONS setting constant
This commit is contained in:
commit
4c4f926ee2
2 changed files with 4 additions and 1 deletions
4
dist/bundle.es.js
vendored
4
dist/bundle.es.js
vendored
|
@ -576,6 +576,7 @@ const AUTOMATIC_DARK_MODE_ENABLED = 'automaticDarkModeEnabled';
|
||||||
const BACKGROUND_PLAY_ENABLED = 'backgroundPlayEnabled';
|
const BACKGROUND_PLAY_ENABLED = 'backgroundPlayEnabled';
|
||||||
const FOREGROUND_NOTIFICATION_ENABLED = 'foregroundNotificationEnabled';
|
const FOREGROUND_NOTIFICATION_ENABLED = 'foregroundNotificationEnabled';
|
||||||
const KEEP_DAEMON_RUNNING = 'keepDaemonRunning';
|
const KEEP_DAEMON_RUNNING = 'keepDaemonRunning';
|
||||||
|
const SHOW_URI_BAR_SUGGESTIONS = 'showUriBarSuggestions';
|
||||||
|
|
||||||
var settings = /*#__PURE__*/Object.freeze({
|
var settings = /*#__PURE__*/Object.freeze({
|
||||||
CREDIT_REQUIRED_ACKNOWLEDGED: CREDIT_REQUIRED_ACKNOWLEDGED,
|
CREDIT_REQUIRED_ACKNOWLEDGED: CREDIT_REQUIRED_ACKNOWLEDGED,
|
||||||
|
@ -591,7 +592,8 @@ var settings = /*#__PURE__*/Object.freeze({
|
||||||
AUTOMATIC_DARK_MODE_ENABLED: AUTOMATIC_DARK_MODE_ENABLED,
|
AUTOMATIC_DARK_MODE_ENABLED: AUTOMATIC_DARK_MODE_ENABLED,
|
||||||
BACKGROUND_PLAY_ENABLED: BACKGROUND_PLAY_ENABLED,
|
BACKGROUND_PLAY_ENABLED: BACKGROUND_PLAY_ENABLED,
|
||||||
FOREGROUND_NOTIFICATION_ENABLED: FOREGROUND_NOTIFICATION_ENABLED,
|
FOREGROUND_NOTIFICATION_ENABLED: FOREGROUND_NOTIFICATION_ENABLED,
|
||||||
KEEP_DAEMON_RUNNING: KEEP_DAEMON_RUNNING
|
KEEP_DAEMON_RUNNING: KEEP_DAEMON_RUNNING,
|
||||||
|
SHOW_URI_BAR_SUGGESTIONS: SHOW_URI_BAR_SUGGESTIONS
|
||||||
});
|
});
|
||||||
|
|
||||||
const DATE_NEW = 'dateNew';
|
const DATE_NEW = 'dateNew';
|
||||||
|
|
|
@ -17,3 +17,4 @@ export const AUTOMATIC_DARK_MODE_ENABLED = 'automaticDarkModeEnabled';
|
||||||
export const BACKGROUND_PLAY_ENABLED = 'backgroundPlayEnabled';
|
export const BACKGROUND_PLAY_ENABLED = 'backgroundPlayEnabled';
|
||||||
export const FOREGROUND_NOTIFICATION_ENABLED = 'foregroundNotificationEnabled';
|
export const FOREGROUND_NOTIFICATION_ENABLED = 'foregroundNotificationEnabled';
|
||||||
export const KEEP_DAEMON_RUNNING = 'keepDaemonRunning';
|
export const KEEP_DAEMON_RUNNING = 'keepDaemonRunning';
|
||||||
|
export const SHOW_URI_BAR_SUGGESTIONS = 'showUriBarSuggestions';
|
||||||
|
|
Loading…
Reference in a new issue