mirror of
https://github.com/discourse/discourse.git
synced 2025-02-14 04:12:45 +08:00
17 lines
409 B
JavaScript
17 lines
409 B
JavaScript
/**
|
|
This view is used for rendering a list of replies below a post
|
|
|
|
@class RepliesView
|
|
@extends Ember.CollectionView
|
|
@namespace Discourse
|
|
@module Discourse
|
|
**/
|
|
Discourse.RepliesView = Ember.CollectionView.extend({
|
|
tagName: 'section',
|
|
classNameBindings: [':embedded-posts', ':bottom', 'hidden'],
|
|
itemViewClass: Discourse.EmbeddedPostView,
|
|
hidden: Em.computed.equal('content.length', 0)
|
|
});
|
|
|
|
|