Gitiles
Code Review
Sign In
www.giggi.me
/
pelican-subtle-giggi
/
93adcfe118fb5797846e0c84e50daf279ddd5946
/
.
/
theme
/
static
/
js
/
scroll.js
blob: 6ec5f389ec13da52785efb3aaf5d28731fd628aa [
file
] [
log
] [
blame
]
// Scroll past header on smaller screens
function
skipHeader
(){
if
(
window
.
location
.
pathname
!=
'/'
&&
window
.
location
.
pathname
!=
'/index.html'
){
window
.
scroll
(
0
,
document
.
getElementById
(
'main'
).
offsetTop
);
}
}