diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/index.html b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/index.html index 24817d6e9890d39f26fd0326ed90f9cb60249a01..b3202347f37ade104d2824d71040b96687764c4f 100644 --- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/index.html +++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/index.html @@ -355,8 +355,8 @@ </head> <body class="bodyLogin"> <div id="login-form-div" class="loginForm"> - <img class="loginLogo" src="./img/openBIS_Logo.png" alt="openBIS" /> - <h1>Lab Notebook & Inventory Manager</h1> + <img id="mainLogo" class="loginLogo" src="" alt="openBIS" /> + <h1 id="mainLogoTitle"></h1> <form id="login-form" action="javascript:"> <fieldset> diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/Profile.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/Profile.js index 3c5e0247edb3d6d5e8fa80edfaf32581a199d9c8..7a5b73f75b7de140900a6fe3fefaf72efe4bd4d5 100644 --- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/Profile.js +++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/config/Profile.js @@ -31,7 +31,22 @@ function DefaultProfile(serverFacade) { } $.extend(DefaultProfile.prototype, { - init: function(serverFacade){ + init: function(serverFacade) { + this.mainLogo = "./img/openBIS_Logo.png"; + this.mainLogoTitle = "Lab Notebook & Inventory Manager"; + + //this.mainLogo = "./img/cross_Logo_alt.png"; + //this.mainLogoTitle = "ETH RDH"; + + // + // Updating title and logo + // + $("#mainLogo").attr("src", this.mainLogo); + $("#mainLogoTitle").append(this.mainLogoTitle); + if(this.mainLogoTitle.length < 10) { + $("#mainLogoTitle").css("font-weight", "bold"); + } + this.serverFacade = serverFacade; // // DEFAULTS, TYPICALLY DON'T TOUCH IF YOU DON'T KNOW WHAT YOU DO