Skip to content

Instantly share code, notes, and snippets.

@npfitz
Created March 12, 2014 14:39
Show Gist options
  • Save npfitz/9508266 to your computer and use it in GitHub Desktop.
Save npfitz/9508266 to your computer and use it in GitHub Desktop.
//Get all unique tags from moodboard images.
$scope.moodboard.tags = function(){
return _.uniq(
_.reduce($scope.moodboard.images, function(memo, image){
return memo.concat(image.tags);
}, [])
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment