mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
FIX: Avoid double load on discovery model change
This commit is contained in:
parent
8dc0fa97d4
commit
41e722b8bf
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ export default Ember.View.extend(LoadMore, UrlRefresh, {
|
|||
if (scrollTo && scrollTo >= 0) {
|
||||
Ember.run.schedule('afterRender', () => $(window).scrollTop(scrollTo + 1));
|
||||
} else {
|
||||
this.loadMoreUnlessFull();
|
||||
Ember.run.scheduleOnce('afterRender', this, this.loadMoreUnlessFull);
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue