mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 12:39:22 +00:00
21 lines
402 B
JavaScript
21 lines
402 B
JavaScript
|
/**
|
||
|
* 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"
|
||
|
}
|
||
|
];
|