tellform/public/modules/core/controllers/home.client.controller.js
2016-04-21 14:27:51 -04:00

9 lines
187 B
JavaScript
Executable file

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