()
| 22900 | return function ngEventHandler(scope, element) { |
| 22901 | element.on(eventName, function(event) { |
| 22902 | var callback = function() { |
| 22903 | fn(scope, {$event:event}); |
| 22904 | }; |
| 22905 | if (forceAsyncEvents[eventName] && $rootScope.$$phase) { |
| 22906 | scope.$evalAsync(callback); |
| 22907 | } else { |
no outgoing calls
no test coverage detected