Last active
December 28, 2020 09:38
-
-
Save chalkygames123/4783caaf02f797d6200131a19f08b9dd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const minWidth = 375 | |
const el = document.querySelector('meta[name="viewport"]') | |
const updateContent = () => { | |
if (window.screen.width < minWidth) { | |
el.setAttribute('content', `width=${minWidth}`) | |
} else { | |
el.setAttribute('content', 'width=device-width') | |
} | |
} | |
updateContent() | |
window.addEventListener('orientationchange', updateContent) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment