I know how ngRepeat uses hash keys to not rerender elements, I am storing a simple array of strings, and I would like to force the re render of the dom , is there a simple way to do it?
to force ng-repeat to re render itself even though my string array havn't changed?
Why :
$scope.image = "image/jpg..." $scope.confs = ['glow','sepia','brighten'] <div ng-repeat="conf in confs"> <div my-directive="conf"> </div> I want to rerun the ng-repeat when the image changes, not when the conf change
$applybut if nothing changed in model angular likely won't do anything