- if we choose HTML5Router or Fragment router - in both cases reitit should prevent default anchor click behavior
- however, ignore-anchor-click function here is never called
- because a few lines below goog.events/listen is missing true 4th arg - so browser first captures click and never gets to document.click
- is
(gevents/listen js/document goog.events.EventType.CLICK ignore-anchor-click))
- should be - then all works
(gevents/listen js/document goog.events.EventType.CLICK ignore-anchor-click true))
question
- is there a way to change this behavior without PR or forking?
solution