Skip to content

Instantly share code, notes, and snippets.

View justenh's full-sized avatar

Justen Holter justenh

View GitHub Profile
@justenh
justenh / mobile-meta-tags.html
Created December 4, 2015 16:23
Viewport Meta Tags
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
@justenh
justenh / fit.js
Last active August 29, 2015 14:01
JS scale to fit/fill
/**
*
*/
function getScaleTofit(width, height, maxWidth, maxHeight)
{
return Math.min(maxWidth / width, maxHeight / height);
}
/**
*