Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
GzyAftermath authored Oct 6, 2023
1 parent 85721a9 commit f9b93eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions static/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit f9b93eb

Please sign in to comment.