()
| 19256 | return function ngEventHandler(scope, element) { |
| 19257 | element.on(eventName, function(event) { |
| 19258 | var callback = function() { |
| 19259 | fn(scope, {$event:event}); |
| 19260 | }; |
| 19261 | if (forceAsyncEvents[eventName] && $rootScope.$$phase) { |
| 19262 | scope.$evalAsync(callback); |
| 19263 | } else { |
no outgoing calls
no test coverage detected