|
Root.getUrl () |
|
function checks if the system url of this antville-installation
was defined in setup and returns it.
if not set, root.href() is returned. |
Sourcecode in Root/objectFunctions.js:
1: function getUrl() {
2: if (!root.sys_url)
3: return root.href();
4: return root.sys_url;
5: }
|