mirror of
https://github.com/discourse/discourse.git
synced 2025-02-16 01:53:09 +08:00
14 lines
283 B
JavaScript
14 lines
283 B
JavaScript
/**
|
|
Displays all posts within a group
|
|
|
|
@class Discourse.GroupIndexView
|
|
@extends Ember.Mixin
|
|
@namespace Discourse
|
|
@module Discourse
|
|
**/
|
|
Discourse.GroupIndexView = Discourse.View.extend(Discourse.ScrollTop, Discourse.LoadMore, {
|
|
eyelineSelector: '.user-stream .item'
|
|
|
|
});
|
|
|