Fix: install error when live-reload is disabled
This commit is contained in:
parent
2912a53729
commit
6636d3382b
|
@ -148,13 +148,7 @@
|
||||||
|
|
||||||
updateMeta(result);
|
updateMeta(result);
|
||||||
|
|
||||||
if (liveReload) {
|
window.dispatchEvent(new CustomEvent('installed'));
|
||||||
port.postMessage({method: 'liveReloadStart'});
|
|
||||||
}
|
|
||||||
$('.live-reload').addEventListener('change', () => {
|
|
||||||
const method = 'liveReload' + (liveReload ? 'Start' : 'Stop');
|
|
||||||
port.postMessage({method});
|
|
||||||
});
|
|
||||||
})
|
})
|
||||||
.catch(err => {
|
.catch(err => {
|
||||||
alert(chrome.i18n.getMessage('styleInstallFailed', String(err)));
|
alert(chrome.i18n.getMessage('styleInstallFailed', String(err)));
|
||||||
|
@ -234,6 +228,15 @@
|
||||||
} else {
|
} else {
|
||||||
setLiveReload.addEventListener('change', () => {
|
setLiveReload.addEventListener('change', () => {
|
||||||
liveReload = setLiveReload.checked;
|
liveReload = setLiveReload.checked;
|
||||||
|
if (installed) {
|
||||||
|
const method = 'liveReload' + (liveReload ? 'Start' : 'Stop');
|
||||||
|
port.postMessage({method});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
window.addEventListener('installed', () => {
|
||||||
|
if (liveReload) {
|
||||||
|
port.postMessage({method: 'liveReloadStart'});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user