Releases: canjs/can-dom-events
Releases · canjs/can-dom-events
Fix wrong JSDoc descriptions of dispatch and removeEventListener functions
QUNIT2 upgrade
This updates the tests to use [email protected].
Test Cleanup
This release fixes some tests to make sure they clean up event listeners and do not break other tests.
#65
stopPropagation in a delegated event handler will prevent a normal event handler
Fixing event delegation
This fixes event delegation so all events are dispatched on the inner-most element, and then traverse up to the parent, and so on.
This also makes it so that ev.stopPropagation
and ev.stopImmediatePropagation
work with event delegation.