mirror of https://github.com/dirtbags/moth.git
puzzles.js: add in a cache buster
This commit is contained in:
parent
8716a0cadd
commit
f76dd321af
|
@ -1,5 +1,7 @@
|
||||||
var puzzlesTerminal;
|
var puzzlesTerminal;
|
||||||
var puzzlesJsonUrl = "puzzles.json";
|
var ms=new Date().getTime()
|
||||||
|
var puzzlesJsonUrl = "puzzles.json?" + ms;
|
||||||
|
console.log(puzzlesJsonUrl);
|
||||||
|
|
||||||
function loadPuzzle(cat, id, points) {
|
function loadPuzzle(cat, id, points) {
|
||||||
console.log("Requested " + cat + "/" + id + "(" + points + ")");
|
console.log("Requested " + cat + "/" + id + "(" + points + ")");
|
||||||
|
|
Loading…
Reference in New Issue