(e)
| 4819 | } |
| 4820 | |
| 4821 | function e_preventDefault(e) { |
| 4822 | if (e.preventDefault) e.preventDefault(); |
| 4823 | else e.returnValue = false; |
| 4824 | } |
| 4825 | function e_stopPropagation(e) { |
| 4826 | if (e.stopPropagation) e.stopPropagation(); |
| 4827 | else e.cancelBubble = true; |
no outgoing calls
no test coverage detected