This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/views/topic_posts_view.js
Sam 0089619ed9 Eyeline will no fire any events if the window has no focus
After posts are rendered a debounced eyeline is fired
Dont trigger eyeline from TopicPostsView, its the wrong spot, will only fire on first render
2013-03-20 21:45:27 -07:00

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
});