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

main.js 425B

    'use strict'; /** * @ngdoc function * @name domainManagerApp.controller:MainCtrl * @description * # MainCtrl * Controller of the domainManagerApp */ angular.module('domainManagerApp.main', ['firebase', 'domainManagerApp.userData']) .controller('MainCtrl', ['$scope', 'UserData', function ($scope, UserData) { $scope.username = UserData.getUser(); $scope.isAuthenticated = UserData.isAuthenticated(); }]);