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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Sometime, Users want to bind one time. If there is no once, attch event and should be detach event. It is too complicated.
once
var fp = function(){ // do something a.off(fp); } a.on(fp);
->
var fp = function(){ // do something } a.once(fp);
The text was updated successfully, but these errors were encountered:
feat(component): add once method
64a7209
once is executed event just one time. Ref naver#412
62f456e
feat(component): add once method (#434)
5dd310e
once is executed event just one time. Ref #412 Close #412
46384f0
mixed
No branches or pull requests
Description
Sometime, Users want to bind one time. If there is no
once
, attch event and should be detach event. It is too complicated.Steps to check or reproduce
->
The text was updated successfully, but these errors were encountered: