Make Prettier happy

This commit is contained in:
Penar Musaraj 2019-04-11 14:15:47 -04:00
parent f060c9b3ff
commit 60db57acc0
2 changed files with 1 additions and 2 deletions

View File

@ -121,7 +121,7 @@ const FooterNavComponent = MountWidget.extend(
setBackForward() {
let index = this.get("currentRouteIndex");
this.set("canGoBack", (index > 1 || document.referrer) ? true : false);
this.set("canGoBack", index > 1 || document.referrer ? true : false);
this.set("canGoForward", index < this.routeHistory.length ? true : false);
}
}

View File

@ -56,4 +56,3 @@ body.footer-nav-visible {
-webkit-backdrop-filter: blur(10px);
}
}