mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 12:39:22 +00:00
23 lines
501 B
JavaScript
23 lines
501 B
JavaScript
/**
|
|
* URL functions
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
ComunicWeb.common.url = {
|
|
/**
|
|
* Return current URL opened on the website
|
|
*
|
|
* @return {String} The URL opened on the website
|
|
*/
|
|
getCurrentWebsiteURL: function(){
|
|
//Retrieve website URL
|
|
var websiteURL = location.href;
|
|
|
|
//Extract the URI part for the app
|
|
var uripage = websiteURL.replace(ComunicWeb.__config.siteURL, "");
|
|
|
|
//Return result
|
|
return uripage;
|
|
},
|
|
}; |