(event)
| 3024 | function stopMethod() {e_stop(this);} |
| 3025 | // Ensure an event has a stop method. |
| 3026 | function addStop(event) { |
| 3027 | if (!event.stop) event.stop = stopMethod; |
| 3028 | return event; |
| 3029 | } |
| 3030 | |
| 3031 | function e_preventDefault(e) { |
| 3032 | if (e.preventDefault) e.preventDefault(); |
no outgoing calls
no test coverage detected