mirror of
https://github.com/discourse/discourse.git
synced 2025-05-23 12:51:24 +08:00
Convert admin section controllers to ES6 modules
This commit is contained in:

committed by
Robin Ward

parent
2358d13d49
commit
e242368266
@ -0,0 +1,19 @@
|
||||
export default Ember.ObjectController.extend({
|
||||
viewMode: 'table',
|
||||
|
||||
viewingTable: Em.computed.equal('viewMode', 'table'),
|
||||
viewingBarChart: Em.computed.equal('viewMode', 'barChart'),
|
||||
|
||||
actions: {
|
||||
// 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');
|
||||
}
|
||||
}
|
||||
|
||||
});
|
Reference in New Issue
Block a user