Unverified Commit 368fd104 authored by chrisgarrity's avatar chrisgarrity Committed by GitHub

Merge pull request #3549 from LLK/hotfix/chromeos-release

HOTFIX [master] Enable feature flag for chrome app download
parents 94f52baf 48b502a3
// 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
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment