Tired of seeing who won in LCS game before I can view it

49GiantWarriors·4/15/2016, 5:50:54 AM·1 votes·1,107 views

I normally can't watch the games live so I watch them later on. I hate seeing "TSM Win" in giant letters on the very top of my screen. I'd rather find out by actually watching the game! Maybe Rito can just move it to the bottom of the screen or have it hidden unless you toggle to see it? I just want it to be a surprise and not have it spoiled each time i go to watch a game. Anything but having it be the first first thing you see on the page please! Thanks for your time all

3 Comments

J E B A ł T E D4/15/2016, 5:52:24 AM1 votes

Why not innovate? Cover your eyes or watch it live. your choice.

JimmyNtheKudos4/17/2016, 4:44:41 AM1 votes

There use to be a spoiler button. No idea why Riot got rid of it.

EndlessSorcerer4/17/2016, 4:53:53 AM1 votes

You might be able to handle it yourself if you have something akin to GreaseMonkey on your browser until they correct it.

The message is likely displayed within something <div id="spoiler-message"></div> which will be selected if you right-click is and select "Inspect Element".

You should keep selecting the next element (tag) up in the hierarchy until the browser is highlighting the entire message.

Then you can hide it using the script. For example, $("#spoiler-message").hide() or $("#spoiler-message").visible(false).