WIP Domain listing app with automatic status checking. Buitl with AngularJS.

header.js 367B

    'use strict'; /** * @ngdoc function * @name domainManagerApp.controller:MainCtrl * @description * # MainCtrl * Controller of the domainManagerApp */ angular.module('domainManagerApp') .controller('HeaderController', function ($scope, $location) { $scope.isActive = function (viewLocation) { return viewLocation === $location.path(); }; });