From: Darren Date: Wed, 7 May 2014 23:38:38 +0000 (+0100) Subject: default app.text_theme should be object, not array X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=1c098c72e9105e1ebf42d90fbba5b1043b1cc8db;p=KiwiIRC.git default app.text_theme should be object, not array --- diff --git a/client/src/models/application.js b/client/src/models/application.js index 277434d..e43a8e7 100644 --- a/client/src/models/application.js +++ b/client/src/models/application.js @@ -28,7 +28,7 @@ this.server_settings = options.server_settings || {}; this.translations = options.translations || {}; this.themes = options.themes || []; - this.text_theme = options.text_theme || []; + this.text_theme = options.text_theme || {}; // Best guess at where the kiwi server is if not already specified this.kiwi_server = options.kiwi_server || this.detectKiwiServer();