Skip to content

$scope.$watchCollection not implemented in Angular 1.0.8 #16

@talss89

Description

@talss89

I've hacked a fix using the deep watch syntax in my controller:

$scope.$watchCollection = function(variable, cb) {
    return $scope.$watch(variable, cb, true);
};

Could we replace $watchCollection with $watch(resourceName + "s", callback, true)?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions