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 b79f1e2 commit 46cc4c6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ var PassageDisplayView = DisplayView.extend({
// console.log("place to add NT OT check: "+reference+ " " +bibleVersions);
var justLoadedTOS = false;
if ( ((bibleVersions.indexOf('ESV_MORPH') > -1) || (bibleVersions.indexOf('THOT') > -1)) ||
((window.location.toLowerCase().indexOf("dev.stepbible.org") > -1) && (bibleVersions.indexOf('ESV') > -1)) ) {
((window.location.origin.toLowerCase().indexOf("dev.stepbible.org") > -1) && (bibleVersions.indexOf('ESV') > -1)) ) {
justLoadedTOS = step.util.loadTOS();
hasTOS = true;
}
if ( ((bibleVersions.indexOf('ESV_MORPH') > -1) || (bibleVersions.indexOf('KJV') > -1) ||
(bibleVersions.indexOf('SBLG') > -1) || (bibleVersions.indexOf('THGNT') > -1) || (bibleVersions.indexOf('CUN') > -1)) ||
((window.location.toLowerCase().indexOf("dev.stepbible.org") > -1) && (bibleVersions.indexOf('ESV') > -1)) )
((window.location.origin.toLowerCase().indexOf("dev.stepbible.org") > -1) && (bibleVersions.indexOf('ESV') > -1)) )
hasNTMorph = true;
if (this.partRendered) {
if (cv[C_colorCodeGrammarAvailableAndSelected]) {
Expand Down

0 comments on commit 46cc4c6

Please sign in to comment.