ng-clique em disparo em dispositivos móveis ou tablets

No carregamento da página, tenho um controlador que chama um serviço e vincula os dados retornados a alguns $ scope.objects:

app.controller("MainController", function($scope, $http, serviceGetData) {

    serviceGetData.getData(function(data) {
        $scope.LoginCount = data.LoginCount;
        $scope.ProductInfo = data.ProductInfo;
        $scope.ProfileInfo = data.ProfileInfo;

        // Delayed binding
        $scope.OrderHistory  = { History: [] };
    }

    $scope.populateModel = function(model, values) {
        var isArray = $.isArray(values);

        $.each(values, function(key, value) {

            if (isArray) {
                key = this.key;
               value = this.value;
            }

            if (model[key] !== value) {
                model[key] = value;
            }

        });
    };
}

E no meu HTML, tento vincular $ scope.OrderHistory por:

<h1><a href="#" ng-click="populateModel(OrderHistory  , { History: OrderEntries })" >View order details</a></h1>

Isso é bom quando visualizado em laptops / desktops, mas não funciona em tablets e dispositivos móveis, por exemplo. iphone / ipad

questionAnswers(3)

yourAnswerToTheQuestion