mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 20:19:21 +00:00
Splited bottom links list and rendering
This commit is contained in:
parent
f418ee25b0
commit
fba7937d02
@ -592,6 +592,13 @@ var ComunicWeb = {
|
||||
*/
|
||||
bottom: {
|
||||
|
||||
/**
|
||||
* Bottom links
|
||||
*/
|
||||
links: [
|
||||
//TODO : implement
|
||||
],
|
||||
|
||||
/**
|
||||
* Main bottom script file
|
||||
*/
|
||||
|
21
assets/js/components/bottom/links.js
Normal file
21
assets/js/components/bottom/links.js
Normal file
@ -0,0 +1,21 @@
|
||||
/**
|
||||
* Comunic bottom links list
|
||||
*
|
||||
* @author Pierre HUBERT
|
||||
*/
|
||||
|
||||
ComunicWeb.components.bottom.links = [
|
||||
|
||||
//Language selector
|
||||
{
|
||||
innerHTML: "<i class='fa fa-globe'></i> Language",
|
||||
onclick: function(){ComunicWeb.components.langPicker.show();}
|
||||
},
|
||||
|
||||
//About Comunic
|
||||
{
|
||||
innerHTML: "<i class='fa fa-question-circle'></i> About",
|
||||
href: ComunicWeb.__config.aboutWebsiteURL,
|
||||
target: "_blank"
|
||||
}
|
||||
];
|
@ -43,27 +43,24 @@ ComunicWeb.components.bottom.main = {
|
||||
innerHTML: "Comunic "
|
||||
});
|
||||
|
||||
//Put the language selector link on the right
|
||||
var langLink = createElem2({
|
||||
ComunicWeb.components.bottom.links.forEach(function(link){
|
||||
|
||||
var linkEl = createElem2({
|
||||
appendTo: leftElements,
|
||||
type: "a",
|
||||
innerHTML: "<i class='fa fa-globe'></i> Language"
|
||||
href: link.href,
|
||||
innerHTML: link.innerHTML
|
||||
});
|
||||
langLink.onclick = function(){
|
||||
ComunicWeb.components.langPicker.show();
|
||||
};
|
||||
|
||||
if(link.target)
|
||||
linkEl.setAttribute("target", link.target);
|
||||
|
||||
if(link.onclick)
|
||||
linkEl.onclick = link.onclick;
|
||||
|
||||
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");
|
||||
}
|
||||
|
||||
}
|
@ -339,6 +339,7 @@ class Dev {
|
||||
"js/components/menuBar/authenticated.js",
|
||||
|
||||
//Bottom view
|
||||
"js/components/bottom/links.js",
|
||||
"js/components/bottom/main.js",
|
||||
|
||||
//Language picker
|
||||
|
Loading…
Reference in New Issue
Block a user