This commit is contained in:
Tim Schaub
2018-07-19 08:34:35 -06:00
parent dae843a98d
commit d46471d763
21 changed files with 32 additions and 32 deletions

View File

@@ -5,7 +5,7 @@
/**
* @classdesc
* Stripped down implementation of the W3C DOM Level 2 Event interface.
* @see {@link https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-interface}
* @see https://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-interface
*
* This implementation only provides `type` and `target` properties, and
* `stopPropagation` and `preventDefault` methods. It is meant as base class

View File

@@ -15,7 +15,7 @@ import Event from '../events/Event.js';
/**
* @classdesc
* A simplified implementation of the W3C DOM Level 2 EventTarget interface.
* @see {@link https://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-EventTarget}
* @see https://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-EventTarget
*
* There are two important simplifications compared to the specification:
*