Carey Metcalfe | ed3a552 | 2016-03-12 14:14:30 -0500 | [diff] [blame] | 1 | // Scroll past header on smaller screens |
2 | |||||
3 | function skipHeader(){ | ||||
4 | if (window.location.pathname != '/' && window.location.pathname != '/index.html'){ | ||||
5 | window.scroll(0, document.getElementById('main').offsetTop); | ||||
6 | } | ||||
7 | } | ||||
8 |