We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature/catch-expired/src/catchExpired.ts
세션을 취득하지 않은 조건에서 /frame/main.do로 이동하는 경우를 바탕으로 구현을 했습니다.
/frame/main.do
실제로 일어나는 다른 경우는 아직 재현하지 못했습니다.
The text was updated successfully, but these errors were encountered:
function clearCookies (names: string[]) { var i = 0, namesLength = names.length; for (i; i < namesLength; i += 1) { document.cookie = names[i] + '=; expires=Thu, 01 Jan 1970 00:00:01 GMT; path=/'; } }
위 함수로 세션을 강제로 지운 결과 #leftFrame에서 alert 가 일어나고 있었습니다.
#leftFrame
Sorry, something went wrong.
#51 (comment) 위 구현체는 인터넷이 느린 환경(EX: 북미)에서만 가능한 케이스입니다..
mu-hun
No branches or pull requests
세션을 취득하지 않은 조건에서
/frame/main.do
로 이동하는 경우를 바탕으로 구현을 했습니다.실제로 일어나는 다른 경우는 아직 재현하지 못했습니다.
The text was updated successfully, but these errors were encountered: