You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
The ngMobile module provides a special ng-click directive that does a lot of work to figure out when exactly a ng-click handler should execute when running in a mobile environment.
However, for developers writing directives it's not possible to target this special click event as it is not raised on the element. While it is very common to write directives that bind click handler to elements, it's currently not possible to bind to this special click event. In your directives you are left with binding to the regular click event which unfortunately is the browsers default "slow" click implementation.