Skip to content
New issue

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의 start page의 이벤트(메소드) 적용 안됨 #21

Closed
gitaeks opened this issue May 24, 2016 · 2 comments
Closed

action page의 start page의 이벤트(메소드) 적용 안됨 #21

gitaeks opened this issue May 24, 2016 · 2 comments

Comments

@gitaeks
Copy link
Member

gitaeks commented May 24, 2016

action page 컴포넌트에서 이벤트(메소드)적용이 안되는 이슈
target page는 적용이되나 start page는 이벤트(메소드)적용이 안되는 현상

관련문서

링크

@gitaeks
Copy link
Member Author

gitaeks commented May 24, 2016

위 상황은 아래 예제에서 재현해 볼수 있습니다.
https://jsfiddle.net/gitaek/nepf6mgs/

@kieregh
Copy link
Collaborator

kieregh commented May 24, 2016

해당 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');
})

@gitaeks gitaeks closed this as completed May 27, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants