From a4c09b0b276a30887e91981a7eb33b6baa69c00b Mon Sep 17 00:00:00 2001 From: Sebastien Plante Date: Sat, 1 Dec 2018 22:09:18 -0500 Subject: [PATCH] oops, re-enabled autorefresh --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index df57a3f..72f9ce7 100644 --- a/index.php +++ b/index.php @@ -24,7 +24,7 @@ $details = isset($_GET['details']) ? $_GET['details'] : ""; function update() { $.get('page.php?rootpage=&orderby=&details=', function(data) { $("#page").html(data); - //window.setTimeout(update, 10000); // 10 secondes + window.setTimeout(update, 10000); // 10 secondes }); }