Skip to content

Commit

Permalink
Update controller.js
Browse files Browse the repository at this point in the history
  • Loading branch information
benjym authored Nov 22, 2023
1 parent 1e6908b commit 2e37aa1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ socket.on("connect", () => {
let urlParams = new URLSearchParams(window.location.search);
let master;
if ( urlParams.has('master') ) { master = urlParams.get('master') }
else { master = "grain-days-2023"; }
//else { master = "grain-days-2023"; }
else { master = "mega-maths-day-2023": }

function init() {
fetch('master/' + master + '.json')
Expand Down Expand Up @@ -102,4 +103,4 @@ function init() {

}

init();
init();

0 comments on commit 2e37aa1

Please sign in to comment.