tellform/public/modules/core/services/subdomain.client.service.js

10 lines
209 B
JavaScript
Raw Normal View History

2016-06-09 03:32:33 +00:00
'use strict';
angular.module('core').factory('subdomain', ['$location', function ($location) {
var host = $location.host();
if (host.indexOf('.') < 0)
return null;
else
return host.split('.')[0];
}]);