Skip to content

Commit

Permalink
Extend creators handling to committee variable
Browse files Browse the repository at this point in the history
  • Loading branch information
fbennett committed Jun 21, 2015
1 parent 313a164 commit 9987533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/attributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ CSL.Attributes["@variable"] = function (state, arg) {
output = false;
for (var i=0,ilen=this.variables.length;i<ilen;i++) {
var variable = this.variables[i];
if (variable === "authority"
if (["authority", "committee"].indexOf(variable) > -1
&& "string" === typeof Item[variable]
&& "names" === this.name) {

Expand Down

0 comments on commit 9987533

Please sign in to comment.