FIX: Clicking the logo was not scrolling to the top

This commit is contained in:
Robin Ward 2014-02-12 11:03:04 -05:00
parent 22af3fe085
commit 721472dab4

View file

@ -27,7 +27,9 @@ Discourse.DiscoveryTopicsView = Discourse.View.extend(Discourse.LoadMore, {
_readjustScrollPosition: function() {
var scrollTo = Discourse.Session.currentProp('topicListScrollPosition');
if (scrollTo) {
if (Discourse.URL.get('router.url').indexOf('/more') === -1) { scrollTo = 0; }
if (typeof scrollTo !== "undefined") {
Em.run.schedule('afterRender', function() {
$(window).scrollTop(scrollTo);
});