tellform/public/modules/core/controllers/home.client.controller.js
2015-07-28 15:29:07 -07:00

8 lines
200 B
JavaScript
Executable file

'use strict';
angular.module('core').controller('HomeController', ['$rootScope', '$scope', 'User', 'Auth', '$state',
function($rootScope, $scope, User, Auth, $state) {
$scope = $rootScope;
}
]);