Skip to content

Instantly share code, notes, and snippets.

View roychild's full-sized avatar

Roy Child roychild

View GitHub Profile
@alirobe
alirobe / style library-v5-script-v5.js
Last active September 29, 2015 17:47
kyleschaeffer.com's Responsive SP2010 (sans HTML5, via @alirobe)
// kyleschaeffer.com's Responsive SP2010 (sans HTML5, via @alirobe)
// add me to the bottom of v5.js
// via gist @ http://github.com/alirobe
window.onresize = function(){
var w=800, t=" lt-800 ", cw, h;
h = document.getElementsByTagName("html")[0];
cw = window.outerWidth||h.clientWidth;
if (cw<=w) {if(h.className.indexOf(t)==-1) {h.className+=t}}
else {h.className=h.className.replace(/lt-800/g,'').replace(/[\s]{2,}/g,' ');}