diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-01-15 09:26:20 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-01-15 09:26:20 +0900 |
| commit | 3ec93cea44816b161c6d3a5966160733b9ade4dc (patch) | |
| tree | e1c566dcd4ee849703deb4e59d7a909814c0bb8e /src/web | |
| parent | Update dependency; summaly :rocket: (diff) | |
| download | misskey-3ec93cea44816b161c6d3a5966160733b9ade4dc.tar.gz misskey-3ec93cea44816b161c6d3a5966160733b9ade4dc.tar.bz2 misskey-3ec93cea44816b161c6d3a5966160733b9ade4dc.zip | |
Fix bbug
Diffstat (limited to 'src/web')
| -rw-r--r-- | src/web/app/desktop/tags/post-form.tag | 2 | ||||
| -rw-r--r-- | src/web/app/mobile/tags/post-form.tag | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/web/app/desktop/tags/post-form.tag b/src/web/app/desktop/tags/post-form.tag index 16c7bc4bd1..b8cd8d3d77 100644 --- a/src/web/app/desktop/tags/post-form.tag +++ b/src/web/app/desktop/tags/post-form.tag @@ -3,7 +3,7 @@ <div class="attaches" if={ files.length != 0 }> <ul class="files" ref="attaches"> <li class="file" each={ files }> - <div class="img" style="background-image: url({ url + "?thumbnail&size=64" })" title={ name }></div><img class="remove" onclick={ _remove } src="/_/resources/desktop/remove.png" title="添付取り消し" alt=""/> + <div class="img" style="background-image: url({ url + '?thumbnail&size=64' })" title={ name }></div><img class="remove" onclick={ _remove } src="/_/resources/desktop/remove.png" title="添付取り消し" alt=""/> </li> <li class="add" if={ files.length < 4 } title="PCからファイルを添付" onclick={ selectFile }><i class="fa fa-plus"></i></li> </ul> diff --git a/src/web/app/mobile/tags/post-form.tag b/src/web/app/mobile/tags/post-form.tag index 7574c997f6..d7270ebbc5 100644 --- a/src/web/app/mobile/tags/post-form.tag +++ b/src/web/app/mobile/tags/post-form.tag @@ -13,7 +13,7 @@ <div class="attaches" if={ files.length != 0 }> <ul class="files" ref="attaches"> <li class="file" each={ files }> - <div class="img" style="background-image: url({ url + "?thumbnail&size=64" })" title={ name }></div> + <div class="img" style="background-image: url({ url + '?thumbnail&size=64' })" title={ name }></div> </li> <li class="add" if={ files.length < 4 } title="PCからファイルを添付" onclick={ selectFile }><i class="fa fa-plus"></i></li> </ul> |