(e: Event)
| 109 | * @param e The event to prevent the default action for. |
| 110 | */ |
| 111 | export function preventDefault(e: Event) { |
| 112 | e.preventDefault ? e.preventDefault() : (e.returnValue = false); |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * Gets the target Element of the event. In Firefox, a text node may appear as |
nothing calls this directly
no test coverage detected