BayviewComputerClub / smoothie-web

Bayview Computer Club's Online Judge!
https://smoothie.bayview.club
GNU Affero General Public License v3.0
4 stars 0 forks source link

Update header.html #51

Closed magicalsoup closed 4 years ago

magicalsoup commented 4 years ago

Fixed the UI bug where the contest wouldn't automatically make the user leave the contest once it has ended.

espidev commented 4 years ago

I think you're forgetting the redirect

magicalsoup commented 4 years ago

I think you're forgetting the redirect

What do you mean redirect? @espidev I'm new to this so how would I do the redirect?

espidev commented 4 years ago

What do you mean redirect? @espidev I'm new to this so how would I do the redirect?

You just created a variable called leaveURL, you need to actually call a redirect in the browser: https://www.w3schools.com/howto/howto_js_redirect_webpage.asp

espidev commented 4 years ago

So this is probably enough window.location.replace(leaveURL);

magicalsoup commented 4 years ago

Ok I have updated the file, I think its correct, merge?

espidev commented 4 years ago

Looks good