mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 12:39:22 +00:00
19 lines
311 B
JavaScript
19 lines
311 B
JavaScript
|
/**
|
||
|
* Settings general section
|
||
|
*
|
||
|
* @author Pierre HUBERT
|
||
|
*/
|
||
|
|
||
|
ComunicWeb.pages.settings.sections.general = {
|
||
|
|
||
|
/**
|
||
|
* Open settings section
|
||
|
*
|
||
|
* @param {object} args Additionnal arguments
|
||
|
* @param {HTMLElement} target The target for the page
|
||
|
*/
|
||
|
open: function(args, target){
|
||
|
alert("hey");
|
||
|
}
|
||
|
|
||
|
};
|