From f9b93eb6a7d2831a449acc9e039a9f033d059e1f Mon Sep 17 00:00:00 2001 From: Ziyao Guo <103924255+GzyAftermath@users.noreply.github.com> Date: Fri, 6 Oct 2023 16:30:28 +0800 Subject: [PATCH] Update index.js --- static/js/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/js/index.js b/static/js/index.js index c5ba65e..7bc7540 100644 --- a/static/js/index.js +++ b/static/js/index.js @@ -18,11 +18,11 @@ function preloadInterpolationImages() { function setInterpolationImage_early(i) { var img = document.getElementById("img_early"); - img.src = early[i] + "?r=" + Math.random(); + img.src = early[i]; } function setInterpolationImage_late(i) { var img = document.getElementById("img_late"); - img.src = late[i] + "?r=" + Math.random(); + img.src = late[i]; } $(document).ready(function() {