mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
Merge pull request #3549 from LLK/hotfix/chromeos-release
HOTFIX [master] Enable feature flag for chrome app download
This commit is contained in:
commit
368fd1041c
1 changed files with 3 additions and 1 deletions
|
@ -1,10 +1,12 @@
|
||||||
|
// eslint-disable-next-line no-unused-vars
|
||||||
const isStaging = () => process.env.SCRATCH_ENV === 'staging';
|
const isStaging = () => process.env.SCRATCH_ENV === 'staging';
|
||||||
|
|
||||||
|
// eslint-disable-next-line no-unused-vars
|
||||||
const flagInUrl = flag => {
|
const flagInUrl = flag => {
|
||||||
const url = (window.location && window.location.search) || '';
|
const url = (window.location && window.location.search) || '';
|
||||||
return url.indexOf(`${flag}=true`) !== -1;
|
return url.indexOf(`${flag}=true`) !== -1;
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
CHROME_APP_RELEASED: isStaging() && flagInUrl('CHROME_APP_RELEASED')
|
CHROME_APP_RELEASED: true
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue