minor changes
This commit is contained in:
parent
97190cec5d
commit
921333c29b
|
@ -736,31 +736,22 @@ function resetFrasi(){
|
||||||
canto=mcanto.split('_')[1]
|
canto=mcanto.split('_')[1]
|
||||||
if (canto.length==1)
|
if (canto.length==1)
|
||||||
canto='0'+canto
|
canto='0'+canto
|
||||||
//console.log(cantica+', '+canto)
|
|
||||||
commentsArray=getVersiConCitazioni(cantica, canto)
|
commentsArray=getVersiConCitazioni(cantica, canto)
|
||||||
//console.log("Array prima")
|
|
||||||
//console.log(commentsArray)
|
|
||||||
|
|
||||||
commentsArray.forEach(removeHtmlTags2)
|
commentsArray.forEach(removeHtmlTags2)
|
||||||
//console.log("Array dopo")
|
|
||||||
//console.log(commentsArray)
|
|
||||||
//commentsArray.sort(function(a, b){return a.verso - b.verso});
|
|
||||||
var numVerso1;
|
var numVerso1;
|
||||||
var numVerso2;
|
var numVerso2;
|
||||||
|
|
||||||
commentsArray.sort((p1, p2) => {
|
commentsArray.sort((p1, p2) => {
|
||||||
numVerso1 = p1.verso;
|
numVerso1 = p1.verso;
|
||||||
numVerso2 = p2.verso;
|
numVerso2 = p2.verso;
|
||||||
numVerso2 = numVerso2.replaceAll("_","");
|
numVerso2 = parseInt(numVerso2.replaceAll("_",""));
|
||||||
numVerso1 = numVerso1.replaceAll("_","");
|
numVerso1 = parseInt(numVerso1.replaceAll("_",""));
|
||||||
numVerso2 = parseInt(numVerso2);
|
|
||||||
numVerso1 = parseInt(numVerso1);
|
|
||||||
|
|
||||||
if (numVerso1 < numVerso2) return -1;
|
if (numVerso1 < numVerso2) return -1;
|
||||||
if (numVerso1 > numVerso2) return 1;
|
if (numVerso1 > numVerso2) return 1;
|
||||||
return 0;
|
return 0;
|
||||||
});
|
});
|
||||||
console.log("Array dopo")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Luca: removeHtmlTags2 e' la versione compatta di removeHtmlTags*/
|
/* Luca: removeHtmlTags2 e' la versione compatta di removeHtmlTags*/
|
||||||
|
|
Loading…
Reference in New Issue