fixed a bug when changing images, not retuning to the same order and "details page"

This commit is contained in:
2018-12-01 22:05:34 -05:00
parent 4701355894
commit e5e3ad5b71
3 changed files with 9 additions and 9 deletions

View File

@@ -24,7 +24,7 @@ $details = isset($_GET['details']) ? $_GET['details'] : "";
function update() {
$.get('page.php?rootpage=<?php echo $rootpage ?>&orderby=<?php echo $orderby ?>&details=<?php echo $details ?>', function(data) {
$("#page").html(data);
window.setTimeout(update, 10000); // 10 secondes
//window.setTimeout(update, 10000); // 10 secondes
});
}
</script>