aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/stores/settingstore.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/js/stores/settingstore.js')
-rw-r--r--web/src/js/stores/settingstore.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/web/src/js/stores/settingstore.js b/web/src/js/stores/settingstore.js
index 23ac6dca..0ba7d800 100644
--- a/web/src/js/stores/settingstore.js
+++ b/web/src/js/stores/settingstore.js
@@ -1,4 +1,3 @@
-
function _SettingsStore() {
EventEmitter.call(this);
@@ -7,13 +6,13 @@ function _SettingsStore() {
version: "0.12",
showEventLog: true,
mode: "transparent",
- };
+ };
}
_.extend(_SettingsStore.prototype, EventEmitter.prototype, {
- getAll: function() {
+ getAll: function () {
return this.settings;
},
- handle: function(action) {
+ handle: function (action) {
switch (action.actionType) {
case ActionTypes.SETTINGS_UPDATE:
this.settings = action.settings;