tellform/public/modules/core/controllers/home.client.controller.js

8 lines
200 B
JavaScript
Raw Normal View History

2015-06-29 22:51:29 +00:00
'use strict';
2015-07-01 23:14:39 +00:00
angular.module('core').controller('HomeController', ['$rootScope', '$scope', 'User', 'Auth', '$state',
function($rootScope, $scope, User, Auth, $state) {
$scope = $rootScope;
2015-06-29 22:51:29 +00:00
}
]);