stopPropagation static method

void stopPropagation(
  1. Event e
)

Stop the given event from propagation to parent elements.

Used inside the listener functions:

DomEvent.on(div, 'click', allowInterop((e) {
    DomEvent.stopPropagation(e);
}));

Implementation

external static void stopPropagation(Event e);