- new build copied to android dir

This commit is contained in:
walljm 2013-04-16 10:42:09 -04:00
parent 1bde5b3f03
commit b62a794429
2 changed files with 10 additions and 3 deletions

View File

@ -50,7 +50,14 @@
["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:*"],
["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 passed = 0;

View File

@ -528,7 +528,7 @@ function maybeParseRangeSep(ref, r, errAcc) {
function Reference(ref)
{
r = {
var r = {
start: {
first: '',
second: ''
@ -565,7 +565,7 @@ function Reference(ref)
// Determine end chapter and verse
if (r.end.first == '') {
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 = '*';
}
} else {