summaryrefslogtreecommitdiff
path: root/public/js/pretty.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/js/pretty.js')
-rw-r--r--public/js/pretty.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/public/js/pretty.js b/public/js/pretty.js
index 6fff4d03..52882e98 100644
--- a/public/js/pretty.js
+++ b/public/js/pretty.js
@@ -69,13 +69,13 @@ $(document).ready(function () {
});
function scrollToTop() {
- $(document.body).animate({
+ $('body, html').stop(true, true).animate({
scrollTop: 0
}, 100, "linear");
}
function scrollToBottom() {
- $(document.body).animate({
+ $('body, html').stop(true, true).animate({
scrollTop: $(document.body)[0].scrollHeight
}, 100, "linear");
} \ No newline at end of file