Localise global vars

pull/775/head
Vincent 5 years ago
parent c0a33a630f
commit 5527cf7ed2

@ -922,11 +922,11 @@
// Set user's launch count. // Set user's launch count.
const prevLaunchCount = window.getSettingValue('launch-count'); const prevLaunchCount = window.getSettingValue('launch-count');
window.launchCount = !prevLaunchCount ? 1 : prevLaunchCount + 1; const launchCount = !prevLaunchCount ? 1 : prevLaunchCount + 1;
window.setSettingValue('launch-count', window.launchCount); window.setSettingValue('launch-count', launchCount);
// On first launch // On first launch
if (window.launchCount === 1) { if (launchCount === 1) {
// Initialise default settings // Initialise default settings
window.setSettingValue('hide-menu-bar', true); window.setSettingValue('hide-menu-bar', true);
window.setSettingValue('link-preview-setting', false); window.setSettingValue('link-preview-setting', false);

Loading…
Cancel
Save