diff --git a/view-webapp/src/main/webapp/WEB-INF/layouts/standard.html b/view-webapp/src/main/webapp/WEB-INF/layouts/standard.html index cbf0be4..02b2d12 100644 --- a/view-webapp/src/main/webapp/WEB-INF/layouts/standard.html +++ b/view-webapp/src/main/webapp/WEB-INF/layouts/standard.html @@ -19,6 +19,11 @@ }); // ]]# + #* Debugging code to list all web context properties diff --git a/view-webapp/src/main/webapp/js/main.js b/view-webapp/src/main/webapp/js/main.js index 5338162..cd41608 100644 --- a/view-webapp/src/main/webapp/js/main.js +++ b/view-webapp/src/main/webapp/js/main.js @@ -253,7 +253,6 @@ onLoad(() => { // disable hash scrolling if (window.location.hash) { - console.log("lkhjqlksjdhflkqsjhfd") setTimeout(function() { window.scrollTo(0, 0); }, 1); diff --git a/view-webapp/src/main/webapp/tour-information.inc.html b/view-webapp/src/main/webapp/tour-information.inc.html index 0574736..264298e 100644 --- a/view-webapp/src/main/webapp/tour-information.inc.html +++ b/view-webapp/src/main/webapp/tour-information.inc.html @@ -1,4 +1,4 @@ -
+
diff --git a/view-webapp/src/main/webapp/tour-pairing.inc.html b/view-webapp/src/main/webapp/tour-pairing.inc.html index 1f52090..8beff3f 100644 --- a/view-webapp/src/main/webapp/tour-pairing.inc.html +++ b/view-webapp/src/main/webapp/tour-pairing.inc.html @@ -13,7 +13,7 @@ #set($games = $roundPairing.games) #set($unpairables = $roundPairing.unpairables) #end -
+
Pairings for round diff --git a/view-webapp/src/main/webapp/tour-registration.inc.html b/view-webapp/src/main/webapp/tour-registration.inc.html index b3926cd..379f60c 100644 --- a/view-webapp/src/main/webapp/tour-registration.inc.html +++ b/view-webapp/src/main/webapp/tour-registration.inc.html @@ -1,4 +1,4 @@ -
+
#set($parts = $api.get("tour/${params.id}/part")) diff --git a/view-webapp/src/main/webapp/tour-results.inc.html b/view-webapp/src/main/webapp/tour-results.inc.html index 0e6267d..1af39dd 100644 --- a/view-webapp/src/main/webapp/tour-results.inc.html +++ b/view-webapp/src/main/webapp/tour-results.inc.html @@ -1,4 +1,4 @@ -
+
Results for round diff --git a/view-webapp/src/main/webapp/tour-standings.inc.html b/view-webapp/src/main/webapp/tour-standings.inc.html index 1040d69..5092697 100644 --- a/view-webapp/src/main/webapp/tour-standings.inc.html +++ b/view-webapp/src/main/webapp/tour-standings.inc.html @@ -6,7 +6,7 @@ #end #end -
+
Standings after round diff --git a/view-webapp/src/main/webapp/tour.html b/view-webapp/src/main/webapp/tour.html index 1c3ce1a..eb2e1fa 100644 --- a/view-webapp/src/main/webapp/tour.html +++ b/view-webapp/src/main/webapp/tour.html @@ -92,7 +92,7 @@ let date = Datepicker.parseDate(value, 'yyyy-mm-dd', datepickerLocale); return Datepicker.formatDate(date, format) } - function fromHMS(value) {$('.step').map(item => item.data('step')).forEach(i => console.log(i)) + function fromHMS(value) { if (value && /\d+:\d+:\d+/.test(value)) { let parts = value.split(':'); let seconds = parts[0] * 3600 + parts[1] * 60 + parts[2] * 1; @@ -105,7 +105,7 @@ function chooseStep(step) { $('.tab-content').removeClass('active'); $('.step').removeClass('active'); - $(`.step[data-step="${step}"], #${step}`).addClass('active'); + $(`.step[data-step="${step}"], #${step}-tab`).addClass('active'); window.location.hash = `#${step}`; }