Skip to content

Commit

Permalink
Add missing space (per Volker's review)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpvc committed Oct 19, 2019
1 parent d687ac7 commit d818153
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ts/output/common/OutputJax.ts
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ export abstract class CommonOutputJax<
for (const math of html.math) {
const node = adaptor.parent(math.start.node);
if (node && math.state() < STATE.METRICS) {
const map = domMaps[math.display? 1 : 0];
const map = domMaps[math.display ? 1 : 0];
if (!map.has(node)) {
map.set(node, this.getTestElement(node, math.display));
}
Expand Down

0 comments on commit d818153

Please sign in to comment.