(event)
| 5463 | function stopMethod() {e_stop(this);} |
| 5464 | // Ensure an event has a stop method. |
| 5465 | function addStop(event) { |
| 5466 | if (!event.stop) event.stop = stopMethod; |
| 5467 | return event; |
| 5468 | } |
| 5469 | |
| 5470 | function e_preventDefault(e) { |
| 5471 | if (e.preventDefault) e.preventDefault(); |
no outgoing calls
no test coverage detected