From 7407ddeb8d4edb94c49d94b21ee7ebe8e82a080b Mon Sep 17 00:00:00 2001 From: Piotr Gawron <piotr.gawron@uni.lu> Date: Wed, 12 Apr 2017 16:47:43 +0200 Subject: [PATCH] footer css fixed --- frontend-js/src/main/js/gui/leftPanel/Footer.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend-js/src/main/js/gui/leftPanel/Footer.js b/frontend-js/src/main/js/gui/leftPanel/Footer.js index 95f2564a1e..e0cf37b711 100644 --- a/frontend-js/src/main/js/gui/leftPanel/Footer.js +++ b/frontend-js/src/main/js/gui/leftPanel/Footer.js @@ -21,6 +21,7 @@ Footer.prototype.constructor = Footer; Footer.prototype._createFooterGui = function(message) { var self = this; var projectId = self.getMap().getProject().getProjectId(); + self.getElement().className = "footerLinks"; var link = Functions.createElement({ type : "a", @@ -30,7 +31,7 @@ Footer.prototype._createFooterGui = function(message) { }); link.href = ServerConnector.getServerBaseUrl() + "/admin.xhtml?id=" + projectId; self.getElement().appendChild(link); - + link = Functions.createElement({ type : "a", name : "footerManualLink", @@ -39,7 +40,7 @@ Footer.prototype._createFooterGui = function(message) { }); link.href = "#"; link.onclick = function() { - return ServerConnector.getConfigurationParam(ConfigurationType.USER_MANUAL_FILE).then(function(manualFileUrl){ + return ServerConnector.getConfigurationParam(ConfigurationType.USER_MANUAL_FILE).then(function(manualFileUrl) { var win = window.open(manualFileUrl, '_user_manual_'); win.focus(); }); -- GitLab