|
Root.getTitle () |
|
function checks if the system title of this antville-installation
was defined in setup
if not, it returns "Antville" |
Sourcecode in Root/objectFunctions.js:
1: function getTitle() {
2: if (!root.sys_title)
3: return "antville";
4: return root.sys_title;
5: }
|