(name, target, props)
| 777 | } |
| 778 | |
| 779 | function dispatch(name, target, props) { |
| 780 | var e = document.createEvent("Events"); |
| 781 | e.initEvent(name, false, true); |
| 782 | |
| 783 | if (props) { |
| 784 | for (var name in props) { |
| 785 | e[name] = props[name]; |
| 786 | } |
| 787 | } |
| 788 | |
| 789 | return target.dispatchEvent(e); |
| 790 | } |
no outgoing calls
no test coverage detected