Skip to content

Commit

Permalink
Loading message fade and cancelBake bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
n1474335 committed Sep 19, 2017
1 parent f6b52b7 commit 9028761
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/web/ControlsWaiter.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
};

Expand Down
4 changes: 3 additions & 1 deletion src/web/stylesheets/layout/_io.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
margin: 0;
background-color: var(--primary-background-colour);
visibility: hidden;
opacity: 0;
opacity: 0;

transition: all 0.5s ease;
}
Expand Down Expand Up @@ -117,4 +117,6 @@
line-height: var(--primary-line-height);
color: var(--primary-font-colour);
top: 50%;

transition: all 0.5s ease;
}

0 comments on commit 9028761

Please sign in to comment.