diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-03-22 16:19:32 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-03-22 16:19:32 +0900 |
| commit | b646877e8bf73650859c52fc00a601da5b34bfc0 (patch) | |
| tree | 347c7a8d7744b8da7d966fe0422dad6f38a8a610 /src/web/app/common | |
| parent | [Client] Fix design (diff) | |
| download | misskey-b646877e8bf73650859c52fc00a601da5b34bfc0.tar.gz misskey-b646877e8bf73650859c52fc00a601da5b34bfc0.tar.bz2 misskey-b646877e8bf73650859c52fc00a601da5b34bfc0.zip | |
#309 and some cleanups
Diffstat (limited to 'src/web/app/common')
| -rw-r--r-- | src/web/app/common/tags/core-error.tag | 2 | ||||
| -rw-r--r-- | src/web/app/common/tags/messaging/index.tag | 2 | ||||
| -rw-r--r-- | src/web/app/common/tags/messaging/message.tag | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/web/app/common/tags/core-error.tag b/src/web/app/common/tags/core-error.tag index b903ba3e81..dd6f994ea2 100644 --- a/src/web/app/common/tags/core-error.tag +++ b/src/web/app/common/tags/core-error.tag @@ -1,6 +1,6 @@ <mk-core-error> <!--i: i.fa.fa-times-circle--> - <img src="/resources/error.jpg" alt=""/> + <img src="/assets/error.jpg" alt=""/> <h1>サーバーに接続できません</h1> <p class="text">インターネット回線に問題があるか、サーバーがダウンまたはメンテナンスしている可能性があります。しばらくしてから<a onclick={ retry }>再度お試し</a>ください。</p> <p class="thanks">いつもMisskeyをご利用いただきありがとうございます。</p> diff --git a/src/web/app/common/tags/messaging/index.tag b/src/web/app/common/tags/messaging/index.tag index 8f3f1ed98f..8677c9c7c6 100644 --- a/src/web/app/common/tags/messaging/index.tag +++ b/src/web/app/common/tags/messaging/index.tag @@ -191,7 +191,7 @@ &:not([data-is-me]):not([data-is-read]) > div - background-image url("/resources/unread.svg") + background-image url("/assets/unread.svg") background-repeat no-repeat background-position 0 center diff --git a/src/web/app/common/tags/messaging/message.tag b/src/web/app/common/tags/messaging/message.tag index 6d2651e5a1..21c601157c 100644 --- a/src/web/app/common/tags/messaging/message.tag +++ b/src/web/app/common/tags/messaging/message.tag @@ -2,7 +2,7 @@ <div class="content-container"> <div class="balloon"> <p class="read" if={ message.is_me && message.is_read }>既読</p> - <button class="delete-button" if={ message.is_me } title="メッセージを削除"><img src="/resources/desktop/messaging/delete.png" alt="Delete"/></button> + <button class="delete-button" if={ message.is_me } title="メッセージを削除"><img src="/assets/desktop/messaging/delete.png" alt="Delete"/></button> <div class="content" if={ !message.is_deleted }> <div ref="text"></div> <div class="image" if={ message.file }><img src={ message.file.url } alt="image" title={ message.file.name }/></div> |