Deploy docs via gh-pages (#88)

This commit is contained in:
Jaco Greeff
2019-02-28 17:24:21 +01:00
committed by GitHub
parent b1559dc82a
commit 9de0e2ef1d
9 changed files with 121 additions and 49 deletions
+2 -2
View File
@@ -18,8 +18,8 @@ export class Settings implements SettingsStruct {
this._apiUrl = settings.apiUrl || process.env.WS_URL || ENDPOINT_DEFAULT;
this._i18nLang = settings.i18nLang || LANGUAGE_DEFAULT;
this._uiMode = settings.uiMode || process.env.UI_MODE || UIMODE_DEFAULT;
this._uiTheme = settings.uiTheme || process.env.UI_THEME || UITHEME_DEFAULT;
this._uiMode = settings.uiMode || UIMODE_DEFAULT;
this._uiTheme = settings.uiTheme || UITHEME_DEFAULT;
}
get apiUrl (): string {