mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-25 00:29:30 -05:00
24 lines
626 B
JavaScript
24 lines
626 B
JavaScript
|
Discourse.AdminReportsController = Ember.ObjectController.extend({
|
||
|
viewMode: 'table',
|
||
|
|
||
|
// true if we're viewing the table mode
|
||
|
viewingTable: function() {
|
||
|
return this.get('viewMode') === 'table';
|
||
|
}.property('viewMode'),
|
||
|
|
||
|
// true if we're viewing the bar chart mode
|
||
|
viewingBarChart: function() {
|
||
|
return this.get('viewMode') === 'barChart';
|
||
|
}.property('viewMode'),
|
||
|
|
||
|
// Changes the current view mode to 'table'
|
||
|
viewAsTable: function() {
|
||
|
this.set('viewMode', 'table');
|
||
|
},
|
||
|
|
||
|
// Changes the current view mode to 'barChart'
|
||
|
viewAsBarChart: function() {
|
||
|
this.set('viewMode', 'barChart');
|
||
|
}
|
||
|
|
||
|
});
|