I am experiencing a strange issue with my code - ng-show works perfectly fine on Firefox, but not on IE 11.
<div ng-show="isExist" class="panel panel-default">
Here is the relevant code snippet from the controller:
$scope.isExist = false;
if(user.name)
{
$scope.isExist = true;
}
Despite setting $scope.isExist to false and expecting the Div to be hidden in Firefox and Chrome, it remains visible in IE 11.