(function () { "use strict"; angular .module('codeAPLEBOX.client.user.home') .controller('homeController', homeController); /* @ngInject */ function homeController($state, appConfig, $log) { var vm = this; // ======================================================================= // 초기데이터 // ======================================================================= // ======================================================================= // Angularjs Function // ======================================================================= vm.goCustomerLogin = function(){ $state.go('main.customerLogin') } // ======================================================================= // JavaScript Function // ======================================================================= // ======================================================================= // API // ======================================================================= } })();