Skip to content

Instantly share code, notes, and snippets.

@iregina
Created April 22, 2025 17:33
Show Gist options
  • Select an option

  • Save iregina/baee93fb48d7605780017f699a8037fd to your computer and use it in GitHub Desktop.

Select an option

Save iregina/baee93fb48d7605780017f699a8037fd to your computer and use it in GitHub Desktop.
Disabling Zoom - Shopify MobileBridge
document.addEventListener('DOMContentLoaded', (event) => {
const meta = document.createElement('meta');
meta.setAttribute('name', 'viewport');
meta.setAttribute('content', 'width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0, viewport-fit=cover');
document.getElementsByTagName('head')[0].appendChild(meta);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment