Fix Travis CI fail issues

Travis CI was failing tests due to syntactical errors; fixed the errors (indentation with 4 spaces, etc).
This commit is contained in:
Cal-Hagner 2019-10-13 07:48:18 -04:00
parent 5e05c59a5a
commit 1a906b00e7

View file

@ -631,8 +631,7 @@ class RecipeWaiter {
// Hide recipe controls when output is maximised // Hide recipe controls when output is maximised
if (document.getElementById("i") === "fullscreen") { if (document.getElementById("i") === "fullscreen") {
document.getElementById("controls").style.display = "none"; document.getElementById("controls").style.display = "none";
} } else {
else {
// Show recipe controls if they are not already shown // Show recipe controls if they are not already shown
document.getElementById("controls").style.display = "inherit"; document.getElementById("controls").style.display = "inherit";