(scope)
| 10348 | |
| 10349 | // delete all handlers for a given scope |
| 10350 | function deleteScope(scope){ |
| 10351 | var key, handlers, i; |
| 10352 | |
| 10353 | for (key in _handlers) { |
| 10354 | handlers = _handlers[key]; |
| 10355 | for (i = 0; i < handlers.length; ) { |
| 10356 | if (handlers[i].scope === scope) handlers.splice(i, 1); |
| 10357 | else i++; |
| 10358 | } |
| 10359 | } |
| 10360 | }; |
| 10361 | |
| 10362 | // cross-browser events |
| 10363 | function addEvent(object, event, method) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…