()
| 23546 | return function ngEventHandler(scope, element) { |
| 23547 | element.on(eventName, function(event) { |
| 23548 | var callback = function() { |
| 23549 | fn(scope, {$event:event}); |
| 23550 | }; |
| 23551 | if (forceAsyncEvents[eventName] && $rootScope.$$phase) { |
| 23552 | scope.$evalAsync(callback); |
| 23553 | } else { |
no outgoing calls
no test coverage detected