tellform/public/modules/core/services/subdomain.client.service.js
2017-04-22 19:28:30 -07:00

10 lines
207 B
JavaScript

'use strict';
angular.module('core').factory('subdomain', ['$location', function ($location) {
var host = $location.host();
if (host.indexOf('.') < 0) {
return null;
}
return host.split('.')[0];
}]);