Skip to content

Commit

Permalink
Fixed an improperly-placed semi-colon
Browse files Browse the repository at this point in the history
  • Loading branch information
lemonmade committed Jul 16, 2014
1 parent c39e65f commit 77853ac
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/bigfoot.js
Original file line number Diff line number Diff line change
Expand Up @@ -576,8 +576,9 @@
content = settings.contentMarkup
.replace(/\{\{FOOTNOTENUM\}\}/g, $this.attr("data-footnote-number"))
.replace(/\{\{FOOTNOTEID\}\}/g, $this.attr("data-footnote-identifier"))
.replace(/\{\{FOOTNOTECONTENT\}\}/g, $this.attr("data-footnote-content"));
.replace(/\&gtsym\;/gi, ">").replace(/\&ltsym\;/gi, "<");
.replace(/\{\{FOOTNOTECONTENT\}\}/g, $this.attr("data-footnote-content"))
.replace(/\&gtsym\;/gi, ">")
.replace(/\&ltsym\;/gi, "<");

// Handles replacements of BUTTON attribute requests
content = replaceWithReferenceAttributes(content, "BUTTON", $this);
Expand Down

0 comments on commit 77853ac

Please sign in to comment.