Merge pull request #220 from lbryio/uri-bar-mobile-setting

add SHOW_URI_BAR_SUGGESTIONS setting constant
This commit is contained in:
Akinwale Ariwodola 2019-10-15 13:04:20 +01:00 committed by GitHub
commit 4c4f926ee2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

4
dist/bundle.es.js vendored
View file

@ -576,6 +576,7 @@ const AUTOMATIC_DARK_MODE_ENABLED = 'automaticDarkModeEnabled';
const BACKGROUND_PLAY_ENABLED = 'backgroundPlayEnabled';
const FOREGROUND_NOTIFICATION_ENABLED = 'foregroundNotificationEnabled';
const KEEP_DAEMON_RUNNING = 'keepDaemonRunning';
const SHOW_URI_BAR_SUGGESTIONS = 'showUriBarSuggestions';
var settings = /*#__PURE__*/Object.freeze({
CREDIT_REQUIRED_ACKNOWLEDGED: CREDIT_REQUIRED_ACKNOWLEDGED,
@ -591,7 +592,8 @@ var settings = /*#__PURE__*/Object.freeze({
AUTOMATIC_DARK_MODE_ENABLED: AUTOMATIC_DARK_MODE_ENABLED,
BACKGROUND_PLAY_ENABLED: BACKGROUND_PLAY_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';

View file

@ -17,3 +17,4 @@ export const AUTOMATIC_DARK_MODE_ENABLED = 'automaticDarkModeEnabled';
export const BACKGROUND_PLAY_ENABLED = 'backgroundPlayEnabled';
export const FOREGROUND_NOTIFICATION_ENABLED = 'foregroundNotificationEnabled';
export const KEEP_DAEMON_RUNNING = 'keepDaemonRunning';
export const SHOW_URI_BAR_SUGGESTIONS = 'showUriBarSuggestions';