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

Refactor window.On to accept String as Event #43

Open
ysweid opened this issue Apr 30, 2019 · 0 comments · May be fixed by #44
Open

Refactor window.On to accept String as Event #43

ysweid opened this issue Apr 30, 2019 · 0 comments · May be fixed by #44

Comments

@ysweid
Copy link

ysweid commented Apr 30, 2019

I started to play with gotron yesterday, it is annoying fact that we need to construct a struct in order to start listening to an event.

window.On(&gotron.Event{Event: "event-name"}, func(bin []byte) {
	//Handle event here
}

It will be such cleaner API, if On method can accept String param as following:

window.On("event-name", func(bin []byte) {
	//Handle event here
}
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

Successfully merging a pull request may close this issue.

1 participant