(e)
| 5468 | } |
| 5469 | |
| 5470 | function e_preventDefault(e) { |
| 5471 | if (e.preventDefault) e.preventDefault(); |
| 5472 | else e.returnValue = false; |
| 5473 | } |
| 5474 | function e_stopPropagation(e) { |
| 5475 | if (e.stopPropagation) e.stopPropagation(); |
| 5476 | else e.cancelBubble = true; |
no outgoing calls
no test coverage detected