aboutsummaryrefslogtreecommitdiff
path: root/javascript/app/controllers/application.js
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/app/controllers/application.js')
-rw-r--r--javascript/app/controllers/application.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/javascript/app/controllers/application.js b/javascript/app/controllers/application.js
deleted file mode 100644
index 2936011..0000000
--- a/javascript/app/controllers/application.js
+++ /dev/null
@@ -1,21 +0,0 @@
-import {updateColorThemeCss,themes} from '../utils/color-themes';
-import Ember from 'ember';
-
-export default Ember.Controller.extend({
- settings : Ember.inject.service('settings'),
- themes: Object.values(themes),
- init() {
- this._super(...arguments);
- updateColorThemeCss(this.get('settings').get('colorTheme'));
- },
- currentTheme: Ember.computed('settings',function() {
- return this.get('settings.colorTheme.id');
- }),
- actions : {
- themeChanged (themeId) {
- const theme = themes[themeId];
- this.get('settings').set('colorTheme',theme);
- updateColorThemeCss(theme);
- }
- }
-});