mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 19:38:24 +00:00
Merge pull request #2247 from bradx3/fix_null_topic_error
BUGFIX: suppress error when scrolling at bottom of topic
This commit is contained in:
commit
49386412ca
@ -558,6 +558,8 @@ Discourse.TopicController = Discourse.ObjectController.extend(Discourse.Selected
|
||||
@params {Discourse.Post} post that is at the top
|
||||
**/
|
||||
topVisibleChanged: function(post) {
|
||||
if (!post) { return; }
|
||||
|
||||
var postStream = this.get('postStream'),
|
||||
firstLoadedPost = postStream.get('firstLoadedPost');
|
||||
|
||||
@ -589,6 +591,8 @@ Discourse.TopicController = Discourse.ObjectController.extend(Discourse.Selected
|
||||
@params {Discourse.Post} post that is at the bottom
|
||||
**/
|
||||
bottomVisibleChanged: function(post) {
|
||||
if (!post) { return; }
|
||||
|
||||
var postStream = this.get('postStream'),
|
||||
lastLoadedPost = postStream.get('lastLoadedPost'),
|
||||
index = postStream.get('stream').indexOf(post.get('id'))+1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user