ng-click on firing on mobile or tablet devices
On page load i have a controller that calls a service and then binds the returned data to some $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)