(event)
| 4814 | function stopMethod() {e_stop(this);} |
| 4815 | // Ensure an event has a stop method. |
| 4816 | function addStop(event) { |
| 4817 | if (!event.stop) event.stop = stopMethod; |
| 4818 | return event; |
| 4819 | } |
| 4820 | |
| 4821 | function e_preventDefault(e) { |
| 4822 | if (e.preventDefault) e.preventDefault(); |
no outgoing calls
no test coverage detected