blob: 6ec5f389ec13da52785efb3aaf5d28731fd628aa [file] [log] [blame]
Carey Metcalfeed3a5522016-03-12 14:14:30 -05001// Scroll past header on smaller screens
2
3function skipHeader(){
4 if (window.location.pathname != '/' && window.location.pathname != '/index.html'){
5 window.scroll(0, document.getElementById('main').offsetTop);
6 }
7}
8