Skip to content

Commit 3666482

Browse files
committed
Always append Bible version in textbox
1 parent c6b5e53 commit 3666482

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ <h4 id="ModalTitle" class="modal-title"></h4>
240240
const BookName = Object.keys( VerseMap )[ Book - 1 ];
241241
var RetStr = BookName + " " + Chapter + ":" + StartVerse;
242242
RetStr += ( EndVerse > StartVerse ) ? "-" + EndVerse : "";
243-
RetStr += ( Version != "niv" ) ? " " + Version.toUpperCase() : "";
243+
RetStr += " " + Version.toUpperCase();
244244
return RetStr;
245245
}
246246

0 commit comments

Comments
 (0)