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

addPost.js 343B

1234567891011121314
  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.addPost', ['firebase', 'domainManagerApp.userData'])
  10. .controller('AddPostController', ['$scope', 'UserData', function ($scope, UserData) {
  11. }]);