Opened 7 years ago

Closed 7 years ago

#28536 closed Cleanup/optimization (fixed)

Replace old cross-browser compatibility JavaScript functions with HTML DOM equivalents

Reported by: Claude Paroz Owned by: nobody
Component: contrib.admin Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

I think that addEvent, removeEvent and cancelEventPropagation can now be safely replaced by their pure Javascript implementations (addEventListener, removeEventListener and stopPropagation). They were added 12 years ago.

Change History (3)

comment:1 by Claude Paroz, 7 years ago

Has patch: set

comment:2 by Tim Graham, 7 years ago

Summary: Removed old cross-browser compatibility JS functionsReplace old cross-browser compatibility JavaScript functions with HTML DOM equivalents
Triage Stage: UnreviewedReady for checkin

comment:3 by Claude Paroz <claude@…>, 7 years ago

Resolution: fixed
Status: newclosed

In afc06b5:

Fixed #28536 -- Removed old JS cross-browser utilities

Note: See TracTickets for help on using tickets.
Back to Top