(e)
| 52 | }, |
| 53 | |
| 54 | stopPropagation = function (e) { |
| 55 | if (e.stopPropagation) { e.stopPropagation(); } else { e.cancelBubble = true; } |
| 56 | }, |
| 57 | preventDefault = function (e) { |
| 58 | if (e.preventDefault) { e.preventDefault(); } |
| 59 | }, |
no outgoing calls
no test coverage detected