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

9 lines
187 B
JavaScript
Raw Normal View History

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