Skip to content
This repository has been archived by the owner on Feb 28, 2024. It is now read-only.

Commit

Permalink
Merge pull request #242 from ddit301/shane
Browse files Browse the repository at this point in the history
두가지 동기로 작용되던 버튼 비동기화
  • Loading branch information
ShanePark committed Oct 10, 2021
2 parents 332fbfb + e360f4d commit 8fba23c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gaia/webapp/resources/js/personal.js
Expand Up @@ -7,7 +7,9 @@ $(function(){
loadProject(mngid,projtitle);
})
$('body').on('click', '.mypage', function(){
location.href= getContextPath() + '/' + mem_id;
let mem_id = member.MEM_ID;
history.pushState('member-' + 'personalPage', null, getContextPath() + '/' + mem_id);
memberMovePage('personalPage')
})
});

Expand Down

0 comments on commit 8fba23c

Please sign in to comment.