This commit is contained in:
syuilo 2019-02-06 22:56:20 +09:00
parent cf304f88d4
commit 7177fd27c8
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -12,7 +12,7 @@ export const hostname = address.hostname;
export const url = address.origin;
export const apiUrl = url + '/api';
export const wsUrl = url.replace('http://', 'ws://').replace('https://', 'wss://') + '/streaming';
export const lang = localStorage.getItem('lang');
export const lang = localStorage.getItem('lang') || window.lang; // windowは後方互換性のため
export const langs = _LANGS_;
export const locale = JSON.parse(localStorage.getItem('locale'));
export const copyright = _COPYRIGHT_;