jsflight
jsflight copied to clipboard
Listening events via addEventsListener
Looking through the code I've stumbled upon constructs like:
// when tab is above to close
window.onbeforeunload = function() {
jsflight.stopTimers();
MDN states, that such events should be processed via addEventsListener method rather than function assignment.