Skip to content

Instantly share code, notes, and snippets.

@leaysgur
Created February 19, 2014 15:31
Show Gist options
  • Save leaysgur/9094362 to your computer and use it in GitHub Desktop.
Save leaysgur/9094362 to your computer and use it in GitHub Desktop.
Adjust display size by style zoom to html elm.
;(function(global) {
var doc = global.document;
var deviceRatio = global.innerWidth / 320;
doc.documentElement.style.zoom = deviceRatio;
}(this.self || global));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment