So, I have an event with bubbling set to true, and I have a listener on an abstract “Page” Class and a listener for the same event on the concrete class (ExamplePage) that extends that “page” class. The event is fired from a child of the ExamplePage, why is it heard FIRST on the abstract class?
Shouldn’t the concrete class extending the abstract class receive the event first?
I would like to have default actions on the abstract class and custom actions on the concrete class but in some scenarios, stop propagation of that event from bubbling up to the abstract class.