tellform/public/modules/core/services/subdomain.client.service.js
2016-06-08 20:32:33 -07:00

10 lines
209 B
JavaScript

'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];
}]);