Index: Gruntfile.js =================================================================== diff -u -r4deb03afef27b1268fc1060c57d1ee91ecebfd1d -rcbf6d2e840526952900b5abc895aeac7e56f813c --- Gruntfile.js (.../Gruntfile.js) (revision 4deb03afef27b1268fc1060c57d1ee91ecebfd1d) +++ Gruntfile.js (.../Gruntfile.js) (revision cbf6d2e840526952900b5abc895aeac7e56f813c) @@ -61,7 +61,7 @@ "/v2", "/php", ], - host: "a-rms.net", + host: "www.313.co.kr", port: 80, https: false, changeOrigin: true Index: arms/css/tourGuide/tourGuideCustom.css =================================================================== diff -u -r90a982b14a6a5bf82813420b131b143db4b91dac -rcbf6d2e840526952900b5abc895aeac7e56f813c --- arms/css/tourGuide/tourGuideCustom.css (.../tourGuideCustom.css) (revision 90a982b14a6a5bf82813420b131b143db4b91dac) +++ arms/css/tourGuide/tourGuideCustom.css (.../tourGuideCustom.css) (revision cbf6d2e840526952900b5abc895aeac7e56f813c) @@ -22,11 +22,11 @@ .tg-dialog { color: #f8f8f8; - background: rgb(51, 51, 51); + background: rgba(51, 51, 51, .825); } .tg-dialog .tg-arrow { - background: rgb(51, 51, 51); + background: rgba(51, 51, 51, .825); } .tg-dialog-close-btn { Index: arms/js/common.js =================================================================== diff -u -rbdfa1e19b5c80752c583ed09eed066f990162c24 -rcbf6d2e840526952900b5abc895aeac7e56f813c --- arms/js/common.js (.../common.js) (revision bdfa1e19b5c80752c583ed09eed066f990162c24) +++ arms/js/common.js (.../common.js) (revision cbf6d2e840526952900b5abc895aeac7e56f813c) @@ -15,6 +15,7 @@ let permissions; let userEmail; let scrollPos = 0; + //////////////////////////////////////////////////////////////////////////////////////// //Document Ready //////////////////////////////////////////////////////////////////////////////////////// @@ -104,9 +105,30 @@ $("#menu_requirement").removeClass("hide"); $("#menu_analysis").removeClass("hide"); } - - + if($("#menu_login").hasClass("hide") === false) { + + console.log("class가 존재함. 로그인이 안됬다는 의미."); + + const indexPHPTG = new tourguide.TourGuideClient({ // 상세 정보 투어 가이드 + exitOnClickOutside: true, + autoScroll: false, + hidePrev: true, + hideNext: true, + showStepDots: false, + showStepProgress: false, + steps: TgGroup.indexPHPStep() + }); + + indexPHPTG.start(); + + indexPHPTG.onAfterExit(() => { + $(`[data-id="${reqId}"]`).removeAttr('data-tg-tour'); + $(`[data-id="${reqId}"]`).removeAttr('data-tg-title'); + }); + + } + } function widgsterWrapper() { Index: arms/js/common/tourGuide/tgGroup.js =================================================================== diff -u -r2432dd60fa7ba880398a63ecfc89f95d9160d275 -rcbf6d2e840526952900b5abc895aeac7e56f813c --- arms/js/common/tourGuide/tgGroup.js (.../tgGroup.js) (revision 2432dd60fa7ba880398a63ecfc89f95d9160d275) +++ arms/js/common/tourGuide/tgGroup.js (.../tgGroup.js) (revision cbf6d2e840526952900b5abc895aeac7e56f813c) @@ -1,4 +1,17 @@ var TgGroup = ( function () { + + var indexPHPStep = function () { + const steps = [ + { + title: '
A-RMS By 313DEVGRP
', + content: '
클릭하시면 DEMO를 확인 할 수 있습니다.
', + target: "#menu_login" + } + ]; + return steps; + }; + + var sampleStep = function (pageName) { const steps = [ { @@ -15,19 +28,20 @@ ]; return steps; }; + var tg_dashboard = function () { - const steps = [{ - content: "This is a short guide to get you set up and show you where things are", - title: "Welcome aboard", - target: "#firstStep" - }, + const steps = [ { + content: "This is a short guide to get you set up and show you where things are", + title: "Welcome aboard", + target: "#firstStep" + }, + { content: "Register New Product(or Service) that you want to manage", title: "Register Product(or Service) Button", target: "#modal_popup_id" } ]; - return steps; }; @@ -131,8 +145,10 @@ }; - return { tg_dashboard : tg_dashboard, + return { + tg_dashboard : tg_dashboard, + tg_pdService : tg_pdService, tg_pdServiceVersion : tg_pdServiceVersion, @@ -150,6 +166,8 @@ sampleStep : sampleStep, + indexPHPStep : indexPHPStep, + modalReqKanban : modalReqKanban }; // 내부함수 key : value }