ui-event icon indicating copy to clipboard operation
ui-event copied to clipboard

Bind a callback to any event not natively supported by Angular

Results 3 ui-event issues
Sort by recently updated
recently updated
newest added

I've tried to add some event listeners to a html5 video, like this: ``` ``` The `ended` event work fine but both `seeked` or `seeking` doesn't trigger their functions. Do...

Using Chrome (last version 57.x) on Android 4.4.2, the onended ui-event does not seem to be fired. Working well on Android 5.0+

Hi, I am using ui-event inside my directive as shown below. ##### Js: ``` .directive("test",function(){ var test={ scope:{options:"="}, template:"" } return test; }) ``` ##### HTML: `` Event triggering is...