From 31f596c4357fbf79777f70dee888680602e863e9 Mon Sep 17 00:00:00 2001 From: tofulm Date: Mon, 20 Mar 2023 15:39:41 +0100 Subject: [PATCH] fix: on force le rechargement complet de la box --- js/gamubox.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/gamubox.js b/js/gamubox.js index c7e66f6..3a5c1e1 100644 --- a/js/gamubox.js +++ b/js/gamubox.js @@ -10,8 +10,10 @@ jQuery(function () { $('body').on('click', '.modalbox', function (e) { e.stopPropagation(); e.preventDefault(); + let ts = + new Date() let url = $(this).attr('href'); url += '&var_zajax=content'; + url += '&ts=' + ts; let data = {}; let minHeight = $(this).data('minheight'); let minWidth = $(this).data('minwidth');