Loading message fade and cancelBake bugfix

This commit is contained in:
n1474335 2017-09-20 00:48:37 +01:00
parent f6b52b7c82
commit 9028761821
2 changed files with 4 additions and 2 deletions

View file

@ -81,7 +81,7 @@ ControlsWaiter.prototype.bakeClick = function() {
if (document.getElementById("bake").textContent.indexOf("Bake") > 0) {
this.app.bake();
} else {
this.app.cancelBake();
this.manager.worker.cancelBake();
}
};

View file

@ -72,7 +72,7 @@
margin: 0;
background-color: var(--primary-background-colour);
visibility: hidden;
opacity: 0;
opacity: 0;
transition: all 0.5s ease;
}
@ -117,4 +117,6 @@
line-height: var(--primary-line-height);
color: var(--primary-font-colour);
top: 50%;
transition: all 0.5s ease;
}