From ef1b927861f9a949aed20341144ffb5bfd42f038 Mon Sep 17 00:00:00 2001 From: Yuchen Pei Date: Mon, 19 Sep 2022 11:22:21 +1000 Subject: Removing the web client --- javascript/app/controllers/application.js | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 javascript/app/controllers/application.js (limited to 'javascript/app/controllers/application.js') 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); - } - } -}); -- cgit v1.2.3