9 lines
306 B
JavaScript
9 lines
306 B
JavaScript
Discourse.GroupController = Discourse.ObjectController.extend({
|
|
|
|
// It would be nice if bootstrap marked action lists as selected when their links
|
|
// were 'active' not the `li` tags.
|
|
showingIndex: Em.computed.equal('showing', 'index'),
|
|
showingMembers: Em.computed.equal('showing', 'members'),
|
|
});
|
|
|