(e)
| 2829 | } |
| 2830 | |
| 2831 | function e_preventDefault(e) { |
| 2832 | if (e.preventDefault) e.preventDefault(); |
| 2833 | else e.returnValue = false; |
| 2834 | } |
| 2835 | function e_stopPropagation(e) { |
| 2836 | if (e.stopPropagation) e.stopPropagation(); |
| 2837 | else e.cancelBubble = true; |
no outgoing calls
no test coverage detected