Commit e15163ee authored by Sean Hammond's avatar Sean Hammond

Remove unnecessary parens

parent 69ba0233
......@@ -354,7 +354,7 @@ function AnnotationController(
// Update stored tags with the new tags of this annotation.
var newTags = vm.annotation.tags.filter(function(tag) {
var tags = model.tags || [];
return (tags.indexOf(tag.text) === -1);
return tags.indexOf(tag.text) === -1;
});
tags.store(newTags);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment