ArcBees / gwtquery

A jQuery clone for GWT, and much more.
MIT License
85 stars 38 forks source link

preventDefault for events is stopping event chain from running. #377

Open wkm7 opened 8 years ago

wkm7 commented 8 years ago

The code introduced in EventsListener on checkin https://github.com/ArcBees/gwtquery/commit/c9154098336089c1855b71fa9da5236059280e6c is preventing the event chain from running, and stopping after the first event is runned. Perhaps the lines below need to be removed (onBrowserEvent(event) method):

    if (JsUtils.isDefaultPrevented(event)) {
      return;
    }