Skip to content

Commit

Permalink
removed stray comma (fixes #42)
Browse files Browse the repository at this point in the history
  • Loading branch information
SheetJSDev committed May 17, 2014
1 parent a199075 commit fbb2574
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bits/39_parsestructs.js
Expand Up @@ -118,7 +118,7 @@ function parse_FontFlags(data, length) {
fOutline: d & 0x10,
fShadow: d & 0x20,
fCondense: d & 0x40,
fExtend: d & 0x80,
fExtend: d & 0x80
};
return out;
}
2 changes: 1 addition & 1 deletion dist/xlsx.js
Expand Up @@ -886,7 +886,7 @@ function parse_FontFlags(data, length) {
fOutline: d & 0x10,
fShadow: d & 0x20,
fCondense: d & 0x40,
fExtend: d & 0x80,
fExtend: d & 0x80
};
return out;
}
Expand Down
2 changes: 1 addition & 1 deletion xlsx.js
Expand Up @@ -886,7 +886,7 @@ function parse_FontFlags(data, length) {
fOutline: d & 0x10,
fShadow: d & 0x20,
fCondense: d & 0x40,
fExtend: d & 0x80,
fExtend: d & 0x80
};
return out;
}
Expand Down

0 comments on commit fbb2574

Please sign in to comment.