Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
patricksptang committed Oct 1, 2024
1 parent 111692f commit 360c9b5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions step-web/src/main/webapp/js/step.util.js
Original file line number Diff line number Diff line change
Expand Up @@ -2614,7 +2614,6 @@ step.util = {
'<p style="margin-left:10%;height:14px;font-size:14px"">Revelation of John - Visions of the End</p>' +
'<tr></tr></tbody></table>' +
'</div>';
var urlForiFrame = osisID;
if ((osisID === "1Sam") || (osisID === "2Sam")) urlForiFrame = "1_2Sam";
else if ((osisID === "1Kngs") || (osisID === "2Kngs")) urlForiFrame = "1_2Kngs";
else if ((osisID === "1Chr") || (osisID === "2Chr")) urlForiFrame = "1_2Chr";
Expand All @@ -2631,7 +2630,6 @@ step.util = {
'Copyright information for <a href="/version.jsp?version=ESV" target="_new">ESV</a>' +
'</div>' +
'<br>';
// '<a target="_blank" href="https://beta.garytuck.com/docs/' + urlForiFrame + '.htm#outline">Outline of ' + longBookName + ' by Dr. Gary Tuck</a>';
var chptSummary =
'<br><span style="font-size:18px"><b>Chapter summary of ' + longBookName + ' ' + chapterNum + '</b></span><br>' +
'<span style="font-size:16px">' +
Expand Down Expand Up @@ -4063,10 +4061,11 @@ step.util = {
if (currentMorph === "nomorph") {
numOfMorphResponse ++;
resultJson.morphInfos[k] = {};
break;
}
}
for (var k = 0; k < morphArray.length; k++) {
if (morphArray[k] === "nomorph")
continue;
var currentMorph = morphArray[k];
var morphLowerCase = currentMorph.toLowerCase();
if ((morphLowerCase.indexOf("strongsmorph:") > -1) || (morphLowerCase.indexOf("strongmorph:") > -1) || (morphLowerCase.indexOf("tos:") > -1)) {
Expand Down

0 comments on commit 360c9b5

Please sign in to comment.