mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-27 09:29:59 -04:00
- new build copied to android dir
This commit is contained in:
parent
1bde5b3f03
commit
b62a794429
@ -50,7 +50,14 @@
|
|||||||
["John 1-2", "John 1:1 - 2:*"],
|
["John 1-2", "John 1:1 - 2:*"],
|
||||||
["John 1 - 2", "John 1:1 - 2:*"],
|
["John 1 - 2", "John 1:1 - 2:*"],
|
||||||
["1 John 1-2", "1 John 1:1 - 2:*"],
|
["1 John 1-2", "1 John 1:1 - 2:*"],
|
||||||
["1 John 1 - 2 ", "1 John 1:1 - 2:*"]
|
["1 John 1 - 2 ", "1 John 1:1 - 2:*"],
|
||||||
|
["John 3", "John 3:1 - 3:*"],
|
||||||
|
["John 2:1-John 3:3", "John 2:1 - 3:3"],
|
||||||
|
["John 2 : 1 - John 3 : 3 ", "John 2:1 - 3:3"],
|
||||||
|
["John 3-4", "John 3:1 - 4:*"],
|
||||||
|
["John 4 - 7", "John 4:1 - 7:*"],
|
||||||
|
["1 John 4-6", "1 John 4:1 - 6:*"],
|
||||||
|
["1 John 4 - 5 ", "1 John 4:1 - 5:*"]
|
||||||
];
|
];
|
||||||
var b = $("body");
|
var b = $("body");
|
||||||
var passed = 0;
|
var passed = 0;
|
||||||
|
@ -528,7 +528,7 @@ function maybeParseRangeSep(ref, r, errAcc) {
|
|||||||
|
|
||||||
function Reference(ref)
|
function Reference(ref)
|
||||||
{
|
{
|
||||||
r = {
|
var r = {
|
||||||
start: {
|
start: {
|
||||||
first: '',
|
first: '',
|
||||||
second: ''
|
second: ''
|
||||||
@ -565,7 +565,7 @@ function Reference(ref)
|
|||||||
// Determine end chapter and verse
|
// Determine end chapter and verse
|
||||||
if (r.end.first == '') {
|
if (r.end.first == '') {
|
||||||
if (r.start.second == '' || typeof r.end.book != 'undefined') {
|
if (r.start.second == '' || typeof r.end.book != 'undefined') {
|
||||||
this.endchapter = r.end.second || '1';
|
this.endchapter = r.end.second || r.start.first;
|
||||||
this.endverse = '*';
|
this.endverse = '*';
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user