diff --git a/website/templates/index.html b/website/templates/index.html index 0a7d295..a714064 100644 --- a/website/templates/index.html +++ b/website/templates/index.html @@ -1,4 +1,4 @@

Welcome to this clockwork gaming debug page!

- Click Here to activate your membership! + Click Here to purchase Clockwork Plus! diff --git a/website/templates/wait.html b/website/templates/wait.html index 6f2b159..135c848 100644 --- a/website/templates/wait.html +++ b/website/templates/wait.html @@ -1,5 +1,5 @@ - + @@ -38,16 +38,19 @@ var bar = new ProgressBar.SemiCircle(container, { value: '', alignToBottom: false }, - from: {color: '#000000'}, - to: {color: '#ED6A5A'}, + from: {color: '#ED6A5A'}, + to: {color: '#76FF03'}, // Set default step function for all animate calls step: (state, bar) => { + bar.path.setAttribute('stroke', state.color); var value = Math.round(bar.value() * 100); if (value === 0) { - bar.setText('Please Wait...'); + bar.setText(''); } else { bar.setText(value); } + + bar.text.style.color = state.color; } }); bar.text.style.fontFamily = '"Raleway", Helvetica, sans-serif';