(e)
| 3029 | } |
| 3030 | |
| 3031 | function e_preventDefault(e) { |
| 3032 | if (e.preventDefault) e.preventDefault(); |
| 3033 | else e.returnValue = false; |
| 3034 | } |
| 3035 | function e_stopPropagation(e) { |
| 3036 | if (e.stopPropagation) e.stopPropagation(); |
| 3037 | else e.cancelBubble = true; |
no outgoing calls
no test coverage detected