Added new link to about website in the footer

This commit is contained in:
Pierre 2018-05-12 12:40:46 +02:00
parent b412214976
commit 4ef2e7f219

View File

@ -52,6 +52,18 @@ ComunicWeb.components.bottom.main = {
langLink.onclick = function(){
ComunicWeb.components.langPicker.show();
};
add_space(leftElements);
add_space(leftElements);
//Add about link
var aboutLink = createElem2({
appendTo: leftElements,
type: "a",
innerHTML: "<i class='fa fa-question-circle'></i> About",
href: ComunicWeb.__config.aboutWebsiteURL
});
aboutLink.setAttribute("target", "_blank");
}
}