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
action page 컴포넌트에서 이벤트(메소드)적용이 안되는 이슈 target page는 적용이되나 start page는 이벤트(메소드)적용이 안되는 현상
링크
The text was updated successfully, but these errors were encountered:
위 상황은 아래 예제에서 재현해 볼수 있습니다. https://jsfiddle.net/gitaek/nepf6mgs/
Sorry, something went wrong.
해당 target 에 이벤트를 트리거하는 것이 일관된 인터페이스 입니다. 즉, modal 처럼...오픈하는 대상 페이지가 target 입니다.
스크립트를 아래와 같이 수정하면 됩니다.
$('#page-login').on('shown.rc.page', function() { $('#myFbutton').css('display', 'none'); }) $('#page-login').on('hidden.rc.page', function() { $('#myFbutton').css('display', 'block'); })
No branches or pull requests
action page 컴포넌트에서 이벤트(메소드)적용이 안되는 이슈
target page는 적용이되나 start page는 이벤트(메소드)적용이 안되는 현상
관련문서
링크
The text was updated successfully, but these errors were encountered: