The simple use of "touchstart click" solve this issue. Im using Angular, so U 
can create a directive like...

app.directive("ngMobileClick", [function () {
    return function (scope, elem, attrs) {
        elem.bind("touchstart click", function (e) {
            e.preventDefault();
            e.stopPropagation();

            scope.$apply(attrs["ngMobileClick"]);
        });
    }}])

HTML call: ng-mobile-click="myScopeFunction()"

Em segunda-feira, 17 de agosto de 2015 17:33:21 UTC-3, Roger Santos 
escreveu:
>
> The same problem... waiting for a help. 
>

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to