Skip to content

Instantly share code, notes, and snippets.

@samirbr
Created December 29, 2015 20:39
Show Gist options
  • Save samirbr/823dbada4b4d2236aea5 to your computer and use it in GitHub Desktop.
Save samirbr/823dbada4b4d2236aea5 to your computer and use it in GitHub Desktop.
$scope.questionnaires = [];
$scope.selectAll = function() {
$scope.selected = $scope.questionnaires.map(function(q) {
return q.id;
});
};
$scope.clear = function() {
$scope.selected = [];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment