Started working on 2 min heartbeats.

This commit is contained in:
Mario Basic
2015-06-03 01:33:46 +02:00
parent d44bda3767
commit 9e819390c0
9 changed files with 324 additions and 11 deletions

12
assets/js/UrlHelper.js Normal file
View File

@@ -0,0 +1,12 @@
class UrlHelper {
static getDomainFromUrl(url)
{
var parts = url.split('/');
return parts[0] + "//" + parts[2];
}
}
export default UrlHelper;