We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f89e714 commit ffd8cfcCopy full SHA for ffd8cfc
web/installer.js
@@ -257,14 +257,12 @@ function install() {
257
// start polling every 0.5s immediately
258
const interval = setInterval(() => {
259
const status = installer.getStatus(); // % progress
260
- console.log("Progress:", status, "%");
261
loadingImg(status);
262
263
// stop when finished
264
if (status >= 100 || installer.isFinished) {
265
clearInterval(interval);
266
- console.log("Install finished!");
267
- console.log(installer.getInstallLink());
+ window.location.href = installer.getInstallLink();
268
pulse(false);
269
}
270
}, 500);
0 commit comments