Skip to content

Instantly share code, notes, and snippets.

@lulalala
Created May 6, 2013 09:25
Show Gist options
  • Save lulalala/5524188 to your computer and use it in GitHub Desktop.
Save lulalala/5524188 to your computer and use it in GitHub Desktop.
Javascript to redirect to mobile subdomain, when using Ernie Miller's methods: http://erniemiller.org/2011/01/05/mobile-devices-and-rails-maintaining-your-sanity/
if (document.cookie.indexOf("full_site=1") === -1 && navigator.userAgent.match(/iPhone|iPod|iPad|Android/i)) {
window.location = document.URL.replace(/:\/\//, '://m.');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment