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