|
|
|
@ -10,6 +10,8 @@ window.onpopstate = history.onpushstate = function(e) { |
|
|
|
}; |
|
|
|
history.pushState("#main-page", "", "") |
|
|
|
|
|
|
|
var save_udpate= null; |
|
|
|
|
|
|
|
function show_page(id, historyPush) { |
|
|
|
//si le z-index de la nouvelle page est inférieur on fait un transi 'forward' sinon 'backward'
|
|
|
|
for(i in page) { |
|
|
|
@ -21,6 +23,15 @@ function show_page(id, historyPush) { |
|
|
|
$hs.addClass('away'); |
|
|
|
$id = $(id).show(); |
|
|
|
|
|
|
|
/*if(id == "#demande-page") { |
|
|
|
save_udpate = setInterval(() => { |
|
|
|
let save_scroll = $(window).scrollTop(); |
|
|
|
updateDemandes(); |
|
|
|
$(window).scrollTop(save_scroll); |
|
|
|
}, 5000); |
|
|
|
} else if (!save_udpate) { |
|
|
|
clearInterval(save_udpate); |
|
|
|
}*/ |
|
|
|
|
|
|
|
if(!historyPush) { |
|
|
|
history.pushState(id, "", "") |
|
|
|
|