After posts are rendered a debounced eyeline is fired Dont trigger eyeline from TopicPostsView, its the wrong spot, will only fire on first render
14 lines
254 B
JavaScript
14 lines
254 B
JavaScript
/**
|
|
This view is for rendering the posts in a topic
|
|
|
|
@class TopicPostsView
|
|
@extends Ember.CollectionView
|
|
@namespace Discourse
|
|
@module Discourse
|
|
**/
|
|
Discourse.TopicPostsView = Em.CollectionView.extend({
|
|
itemViewClass: Discourse.PostView
|
|
});
|
|
|
|
|