From 2495dd2fd0cf830ec541f6f83203dd9b67c8b50d Mon Sep 17 00:00:00 2001 From: Kerrick Date: Wed, 20 Jul 2011 10:30:05 -0700 Subject: [PATCH] fixed page not scrolling to top when navigating via hashtag. --- script.js | 1 + 1 file changed, 1 insertion(+) diff --git a/script.js b/script.js index 4437b02..05baac8 100644 --- a/script.js +++ b/script.js @@ -28,6 +28,7 @@ function navigate(navTo, speed, navFrom) { $(document).ready(function() { $('div.article').hide(0); if(window.location.hash.substr(1)) { + window.setTimeout(window.scrollTo, 850, 0, 0); navigate(window.location.hash.substr(1),400); } else { window.location.hash = showOnLoad;