Corretti menu stampa
This commit is contained in:
parent
97ab161940
commit
dd4b280f4f
|
@ -2309,11 +2309,9 @@
|
||||||
<div id="printArea" style="display: none">
|
<div id="printArea" style="display: none">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script type="module"
|
<script type="module" src="https://cdn.jsdelivr.net/npm/ionicons@latest/dist/ionicons/ionicons.esm.js"></script>
|
||||||
src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
|
<script nomodule src="https://cdn.jsdelivr.net/npm/ionicons@latest/dist/ionicons/ionicons.js"></script>
|
||||||
<script nomodule
|
<script src="./js/lib/jquery.popuplayer.js"></script>
|
||||||
src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
|
|
||||||
<script src="./js/lib/jquery.popuplayer.js"></script>
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
<div class="modal-busy" id="loader" style="display: none">
|
<div class="modal-busy" id="loader" style="display: none">
|
||||||
|
|
|
@ -89,6 +89,7 @@ $(document).ready(function() {
|
||||||
//const start = performance.now();
|
//const start = performance.now();
|
||||||
showCanto(formeprima, '1', '1')
|
showCanto(formeprima, '1', '1')
|
||||||
$("#InfernoCanto_1").attr('style', 'display: d-flex;')
|
$("#InfernoCanto_1").attr('style', 'display: d-flex;')
|
||||||
|
$("#printCantoCorrente").prop("disabled", false);
|
||||||
loadedCanti.add("InfernoCanto_1")
|
loadedCanti.add("InfernoCanto_1")
|
||||||
drawMinimap("#InfernoCanto_1", false)
|
drawMinimap("#InfernoCanto_1", false)
|
||||||
const minim = $(" .minimap__content")
|
const minim = $(" .minimap__content")
|
||||||
|
@ -616,6 +617,7 @@ $(document).ready(function() {
|
||||||
|
|
||||||
if (!(loadedCanti.has(cid))) {
|
if (!(loadedCanti.has(cid))) {
|
||||||
showCanto(forma, numeroCantica, parcid[1])
|
showCanto(forma, numeroCantica, parcid[1])
|
||||||
|
$("#printCantoCorrente").prop("disabled", false);
|
||||||
loadedCanti.add(cid)
|
loadedCanti.add(cid)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1888,6 +1890,7 @@ $(document).ready(function() {
|
||||||
numeroContesti = uniq_res.length;;
|
numeroContesti = uniq_res.length;;
|
||||||
setCurrentPage(0);
|
setCurrentPage(0);
|
||||||
managePage();
|
managePage();
|
||||||
|
$("#printCantoCorrente").prop("disabled", true);
|
||||||
$("#printRisultati").prop("disabled", false);
|
$("#printRisultati").prop("disabled", false);
|
||||||
//$("#loader").fadeOut(300);
|
//$("#loader").fadeOut(300);
|
||||||
//$("#cantica0").trigger("click");
|
//$("#cantica0").trigger("click");
|
||||||
|
@ -2726,6 +2729,7 @@ $(document).ready(function() {
|
||||||
setCurrentPage(0);
|
setCurrentPage(0);
|
||||||
managePage();
|
managePage();
|
||||||
$("#printRisultati").prop("disabled", false);
|
$("#printRisultati").prop("disabled", false);
|
||||||
|
$("#printCantoCorrente").prop("disabled", true);
|
||||||
$("#collapseZero").collapse('show');
|
$("#collapseZero").collapse('show');
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -2757,8 +2761,8 @@ $(document).ready(function() {
|
||||||
let count = resultsInCantica.reduce((n, x) => n + (x === cantica), 0);
|
let count = resultsInCantica.reduce((n, x) => n + (x === cantica), 0);
|
||||||
if (count > 0) {
|
if (count > 0) {
|
||||||
totResultN += count
|
totResultN += count
|
||||||
var spanbadgecantica = $('<span class="badge badge-warning badge-pill mx-2"/>');
|
var spanbadgecantica = $('<span />');
|
||||||
//spanbadgecantica.attr('class', 'badge badge-warning badge-pill mx-2');
|
spanbadgecantica.attr('class', 'badge badge-warning badge-pill mx-2');
|
||||||
spanbadgecantica.append(count)
|
spanbadgecantica.append(count)
|
||||||
spanbadgecantica.appendTo($('#cantica' + i + '-badge'))
|
spanbadgecantica.appendTo($('#cantica' + i + '-badge'))
|
||||||
//$('#cantica' + i).after(spanbadgecantica)
|
//$('#cantica' + i).after(spanbadgecantica)
|
||||||
|
|
Loading…
Reference in New Issue