The welcomePageEnabled and pictureInPictureEnabled props on mobile have been converted to feature flags.
14 lines
303 B
JavaScript
14 lines
303 B
JavaScript
// @flow
|
|
|
|
/**
|
|
* Flag indicating if Picture-in-Picture should be enabled.
|
|
* Default: auto-detected.
|
|
*/
|
|
export const PIP_ENABLED = 'pip.enabled';
|
|
|
|
/**
|
|
* Flag indicating if the welcome page should be enabled.
|
|
* Default: disabled (false).
|
|
*/
|
|
export const WELCOME_PAGE_ENABLED = 'welcomepage.enabled';
|