Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
patricksptang committed Mar 30, 2024
1 parent 1405eb7 commit 2653a6e
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,13 +204,11 @@ var QuickLexicon = Backbone.View.extend({
if (strongNumbers.length == 1)
strongNumbers = this.strong.split(",");
if (strongNumbers.length > 0) {
if (strongNumbers[0].indexOf("lemma") == -1)
strongsToUse = strongNumbers[0];
strongsToUse = strongNumbers[0];
for ( var i = 1; i < strongNumbers.length; i++) {
if (step.util.suppressHighlight(strongNumbers[i]))
strongsNotToDisplay += " " + strongNumbers[i];
if (strongNumbers[i].indexOf("lemma") == -1)
strongsToUse += " " + strongNumbers[i];
strongsToUse += " " + strongNumbers[i];
}
}
if (self.reference !== "") { // The verse vocabulary does not provide a reference so take the provided strong numbers.
Expand Down

0 comments on commit 2653a6e

Please sign in to comment.