mirror of
https://github.com/discourse/discourse.git
synced 2025-01-27 12:36:32 +08:00
17 lines
335 B
JavaScript
17 lines
335 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,
|
|
didInsertElement: function() {
|
|
this.get('topicView').postsRendered();
|
|
}
|
|
});
|
|
|
|
|