10 lines
314 B
JavaScript
10 lines
314 B
JavaScript
export default Ember.Controller.extend({
|
|
counts: null,
|
|
showing: null,
|
|
|
|
// 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')
|
|
});
|