#StuffAlcea #js #javascript
#website #CodeAlcea
Instead of trying to #force people in #landscapemode - which is pretty much #impossible
(https://www.youtube.com/watch?v=Q7LtMTSZGGM https://stackoverflow.com/questions/8738072/forcing-web-site-to-show-in-landscape-mode-only )
I just implemented a #popup that tosses ppl back if in #portrait...
<script>
if(window.innerHeight > window.innerWidth){
alert("цик(yoko)! - Please switch to Landscape mode")
window.history.back()
window.close()
}
</script>