[Client] Set description meta tag

This commit is contained in:
syuilo 2017-10-26 09:02:40 +09:00
parent 25a8148460
commit 58af4365e9
3 changed files with 13 additions and 1 deletions

View file

@ -1,4 +1,6 @@
common: common:
misskey: "Note everything and share it others using Misskey."
time: time:
unknown: "unknown" unknown: "unknown"
future: "future" future: "future"

View file

@ -1,4 +1,6 @@
common: common:
misskey: "Misskeyに何でも投稿して皆と共有しましょう。"
time: time:
unknown: "なぞのじかん" unknown: "なぞのじかん"
future: "未来" future: "未来"

View file

@ -2,7 +2,7 @@
* App initializer * App initializer
*/ */
"use strict"; 'use strict';
import * as riot from 'riot'; import * as riot from 'riot';
import api from './common/scripts/api'; import api from './common/scripts/api';
@ -21,6 +21,14 @@ require('./common/tags');
console.info(`Misskey v${VERSION} (葵 aoi)`); console.info(`Misskey v${VERSION} (葵 aoi)`);
{ // Set description meta tag
const head = document.getElementsByTagName('head')[0];
const meta = document.createElement('meta');
meta.setAttribute('name', 'description');
meta.setAttribute('content', '%i18n:common.misskey%');
head.appendChild(meta);
}
document.domain = CONFIG.host; document.domain = CONFIG.host;
// Set global configuration // Set global configuration