aggiunta misura del tempo di caricamento delle cantiche
This commit is contained in:
parent
106f7bb0c4
commit
fddcbeee3d
|
@ -33,6 +33,7 @@ $(document).ready(function() {
|
|||
|
||||
hideMinimap();
|
||||
|
||||
const start = performance.now();
|
||||
showCantica('Inferno')
|
||||
|
||||
$('#cantica2').css({ 'opacity': 0.40 });
|
||||
|
@ -43,6 +44,8 @@ $(document).ready(function() {
|
|||
|
||||
showCantica('Purgatorio')
|
||||
showCantica('Paradiso')
|
||||
const end = performance.now();
|
||||
console.log(`Load cantica time: ${end - start} ms`);
|
||||
|
||||
|
||||
$("[data-cg]").hover(function() {
|
||||
|
|
Loading…
Reference in New Issue