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

main.js 359B

123456789101112131415161718
  1. 'use strict';
  2. /**
  3. * @ngdoc function
  4. * @name domainManagerApp.controller:MainCtrl
  5. * @description
  6. * # MainCtrl
  7. * Controller of the domainManagerApp
  8. */
  9. angular.module('domainManagerApp.main', ['firebase'])
  10. .controller('MainCtrl', function ($scope) {
  11. $scope.awesomeThings = [
  12. 'HTML5 Boilerplate',
  13. 'AngularJS',
  14. 'Karma'
  15. ];
  16. });