インスタンス名がブラウザタイトルに反映されないのを修正 (#2668)

* titleが反映されないのを修正

* deckでtitleが反映されるように修正
This commit is contained in:
MeiMei
2018-09-08 21:44:28 +09:00
committed by syuilo
parent 67f60ab307
commit 5a13c38a6d
6 changed files with 10 additions and 5 deletions

View File

@@ -5,6 +5,7 @@ declare const _COPYRIGHT_: string;
declare const _VERSION_: string;
declare const _CODENAME_: string;
declare const _ENV_: string;
declare const _NAME_: string;
const address = new URL(location.href);
@@ -20,3 +21,4 @@ export const copyright = _COPYRIGHT_;
export const version = _VERSION_;
export const codename = _CODENAME_;
export const env = _ENV_;
export const name = _NAME_;