Skip to content

Commit

Permalink
update Bible display name
Browse files Browse the repository at this point in the history
  • Loading branch information
patricksptang committed Oct 30, 2023
1 parent 2aab9bd commit 606d0fb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion step-web/src/main/webapp/js/step.util.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,10 @@ step.util = {
for (var i = 0; i < bibleList.length; i++) {
var newMsg = "";
if ((typeof freqList[i + offset] === "string") && (freqList[i + offset] !== "")) {
newMsg += "<br>" + bibleList[i] + ": "
var bibleDisplayName = bibleList[i];
if (bibleDisplayName === "SBLG_TH") bibleDisplayName = "SBLG";
if (bibleDisplayName === "LXX_TH") bibleDisplayName = "LXX";
newMsg += "<br>" + bibleDisplayName + ": "
var freqDetail = freqList[i + offset].split("@");
var bibleName = bibleList[i].split("@")[0];
newMsg += "<a target='_blank' href='?q=version=" + bibleName + "|strong=" + strongNumber;
Expand Down

0 comments on commit 606d0fb

Please sign in to comment.