I\'m trying to figure out why my $watch isn\'t being triggered. This is a snippet from the relevant controller:
$watch
$scope.$watch(\'tasks\', functi
I would recommend trying
$scope.$watch('tasks | json', ...)
That will catch all changes to the tasks array, as it compares the serialized array as a string.
tasks