(function() { "use strict"; angular .module('codeAPLEBOX.client') .controller('mainEmployeeCtrl', mainEmployeeCtrl); /* @ngInject */ function mainEmployeeCtrl($scope, $log, $cookies){ var vm = this; $scope.clickGuide = function(){ $scope.checkGuide = true; } $scope.closeGuide = function(){ $scope.checkGuide = false; } } })();