17 lines
385 B
JavaScript
17 lines
385 B
JavaScript
/**
|
|
Lists previous posts in the history of a post.
|
|
|
|
@class ReplyHistory
|
|
@namespace Discourse
|
|
@module Discourse
|
|
**/
|
|
export default Em.CollectionView.extend({
|
|
tagName: 'section',
|
|
classNameBindings: [':embedded-posts', ':top', ':topic-body', ':offset2', 'hidden'],
|
|
itemViewClass: 'embedded-post',
|
|
hidden: Em.computed.equal('content.length', 0),
|
|
previousPost: true
|
|
});
|
|
|
|
|