mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 20:49:21 +00:00
23 lines
422 B
JavaScript
23 lines
422 B
JavaScript
/**
|
|
* Comunic bottom links list
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
ComunicWeb.components.bottom.links = [
|
|
|
|
//Language selector
|
|
{
|
|
innerLang: "bottom_bar_action_language",
|
|
icon: "fa-globe",
|
|
onclick: function(){ComunicWeb.components.langPicker.show();}
|
|
},
|
|
|
|
//About Comunic
|
|
{
|
|
innerLang: "bottom_bar_action_about",
|
|
icon: "fa-question-circle",
|
|
href: ComunicWeb.__config.aboutWebsiteURL,
|
|
target: "_blank"
|
|
}
|
|
]; |