ng-clic en disparar en dispositivos móviles o tabletas

Al cargar la página, tengo un controlador que llama a un servicio y luego vincula los datos devueltos a algunos $ 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;
            }

        });
    };
}

Y en mi HTML, trato de vincular $ scope.OrderHistory por:

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

Esto está bien cuando se ve en computadoras portátiles / de escritorio, pero no funciona en tabletas y dispositivos móviles, p. iphone / ipad

Respuestas a la pregunta(3)

Su respuesta a la pregunta