Skip to content

Instantly share code, notes, and snippets.

@c0bra
Last active December 17, 2015 07:09
Show Gist options
  • Select an option

  • Save c0bra/5570879 to your computer and use it in GitHub Desktop.

Select an option

Save c0bra/5570879 to your computer and use it in GitHub Desktop.
$scope.sections = Section.query({projectId: $scope.currentProject.id}, function(data) {
angular.forEach(data, function(section) {
$scope.$watch(section, function() {
section.$save();
}, true);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment