I'm facing a strange issue with a basic ng-click function that is functioning properly in all browsers except for IE10 and 11 (I haven't had a chance to test it on Edge yet).
Below is the directive I am using:
$scope.showMoreDetails = false;
$scope.toggleMoreDetails = function() {
$scope.showMoreDetails = !$scope.showMoreDetails;
};
And here's how I'm calling it:
<a data-ng-if="!showMoreDetails" data-ng-click="toggleMoreDetails()"></a>
<a data-ng-if="showMoreDetails" data-ng-click="toggleMoreDetails()"></a>
Any assistance would be greatly appreciated, as I've hit a roadblock.