(callbacksChain, args)
| 131 | } |
| 132 | |
| 133 | function invoke(callbacksChain, args) { |
| 134 | var i, stopPropagation; |
| 135 | for (i = 0; i < callbacksChain.length; i += 1) { |
| 136 | stopPropagation = callbacksChain[i].apply(undefined, args); |
| 137 | if (stopPropagation) { |
| 138 | return true; |
| 139 | } |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | function startListen(root) { |
| 144 | var pos = { |
no outgoing calls
no test coverage detected