Scroll to top when reloading the stream

closes #6470
This commit is contained in:
Steffen van Bergerem 2015-10-08 13:01:32 +02:00 committed by Jonne Haß
parent 0c214cd4ca
commit da9cb52007

View file

@ -114,6 +114,8 @@ var app = {
$(".stream_title").text(link.text()); $(".stream_title").text(link.text());
} }
$("html, body").animate({scrollTop: 0});
// app.router.navigate doesn't tell us if it changed the page, // app.router.navigate doesn't tell us if it changed the page,
// so we use Backbone.history.navigate instead. // so we use Backbone.history.navigate instead.
var change = Backbone.history.navigate(link.attr("href").substring(1) ,true); var change = Backbone.history.navigate(link.attr("href").substring(1) ,true);