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