Skip to content

Instantly share code, notes, and snippets.

@jimthedev
Last active December 7, 2015 18:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jimthedev/990db918e962ef2f8768 to your computer and use it in GitHub Desktop.
Save jimthedev/990db918e962ef2f8768 to your computer and use it in GitHub Desktop.
Ionic2 page reload bookmarklet to toggle between ionic platforms
javascript:void((function(){var loc = location.href; var base = loc.split('?')[0]; loc.indexOf("?") == -1 || loc.indexOf("?ionicplatform=ios") > -1 ? (location.href = base+"?ionicplatform=android") : (location.href = base+"?ionicplatform=ios");})());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment