denoland / dotland

[Archived] deno.land website
https://deno.land
MIT License
957 stars 626 forks source link

add x button #2178

Closed lambtron closed 2 years ago

lambtron commented 2 years ago

image

click on it will remove the top bar.

top bar will re appear on reloading the page.

kidonng commented 2 years ago

top bar will re appear on reloading the page.

That makes the button less useful IMO. Maybe something like this:

const onClick = () => localStorage.setItem('hellobar', content)
const onLoad = () => { if (localStorage.getItem('hellobar') === content) return }
lucacasonato commented 2 years ago

top bar will re appear on reloading the page.

That makes the button less useful IMO. Maybe something like this:

const onClick = () => localStorage.setItem('hellobar', content)
const onLoad = () => { if (localStorage.getItem('hellobar') === content) return }

In that case it should be a cookie so it don't FOUC on SSR.

crowlKats commented 2 years ago

Closing as not applicable anymore