Skip to content

Instantly share code, notes, and snippets.

@fchevitarese
Created December 29, 2015 20:39
Show Gist options
  • Save fchevitarese/ca9f10e6c22b11096761 to your computer and use it in GitHub Desktop.
Save fchevitarese/ca9f10e6c22b11096761 to your computer and use it in GitHub Desktop.
$scope.checkAll = function(){
if ($scope.selectedAll) {
$scope.selectedAll = true;
}
else {
$scope.selectedAll = false;
}
angular.forEach($scope.questionnaires, function(form) {
form.selected = $scope.selectedAll;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment