(event)
| 2824 | function stopMethod() {e_stop(this);} |
| 2825 | // Ensure an event has a stop method. |
| 2826 | function addStop(event) { |
| 2827 | if (!event.stop) event.stop = stopMethod; |
| 2828 | return event; |
| 2829 | } |
| 2830 | |
| 2831 | function e_preventDefault(e) { |
| 2832 | if (e.preventDefault) e.preventDefault(); |
no outgoing calls
no test coverage detected