diff options
Diffstat (limited to 'slideshows/advanced/template')
-rw-r--r-- | slideshows/advanced/template/events.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/slideshows/advanced/template/events.js b/slideshows/advanced/template/events.js index e01df1c..82095f4 100644 --- a/slideshows/advanced/template/events.js +++ b/slideshows/advanced/template/events.js @@ -26,8 +26,13 @@ $(document).ready(function(){ $('.eventEl').click(function() {
showWindow($(this));
})
+ setTimeout("reloadPage()", 21600000);
});
+function reloadPage() {
+ location.reload();
+};
+
function showWindow(data) {
var title = $('.summary',data).text();
|