Skip to content

Commit

Permalink
Merge branch 'master' into service-startup-progress
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderegg committed Apr 11, 2024
2 parents e9ba854 + f1df4f9 commit 306a066
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,11 @@ qx.Class.define("osparc.auth.LoginPage", {
_getMainLayout: function() {
const mainLayout = this.getChildControl("main-layout");
this.getChildControl("top-spacer");
this.getChildControl("logo-w-platform");
const logo = this.getChildControl("logo-w-platform");
if (osparc.product.Utils.isS4LProduct() || osparc.product.Utils.isProduct("s4llite")) {
logo.setCursor("pointer");
logo.addListener("tap", () => window.open("https://sim4life.swiss/", "_blank"));
}
if (osparc.product.Utils.isProduct("s4lacad")) {
this.getChildControl("science-text-image");
}
Expand Down

0 comments on commit 306a066

Please sign in to comment.