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

on function is not triggered when Selector is included #331

Open
confile opened this issue Jan 2, 2015 · 0 comments
Open

on function is not triggered when Selector is included #331

confile opened this issue Jan 2, 2015 · 0 comments

Comments

@confile
Copy link

confile commented Jan 2, 2015

It is also strange that the following works:

$(contentList).find(".mytouch")
        .on("tap", new Function() {

            public boolean f(Event ev) {

              GWT.log("div tapped");

              return true;
            }
        });

and the following does NOT work:

$(contentList).on("tap", ".mytouch", new Function() {

            public boolean f(Event ev) {

              GWT.log("div tapped");

              return true;
            }
        });
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

1 participant