utility.js: replace Utility.scroll_to with Element.scrollIntoView.

https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView
https://caniuse.com/#feat=scrollintoview
This commit is contained in:
evazion
2018-08-16 22:03:50 -05:00
parent ad056e69d5
commit dfffabd662
5 changed files with 4 additions and 28 deletions

View File

@@ -49,11 +49,7 @@
$(function() {
$("#new-response-link").click(function(e) {
$("#topic-response").show();
$('html, body').animate({
scrollTop: $("#forum_post_body").offset().top - 100
}, 500);
document.body.scrollIntoView(false);
e.preventDefault();
})
});