summaryrefslogtreecommitdiff
path: root/src/web/app/mobile
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-06-13 06:27:32 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-06-13 06:27:32 +0900
commitac94cf91df8142a4d927f19a944393bf243863e0 (patch)
tree80dd5dd021730014c2c2d8b1dafdcd9cf84ab4e3 /src/web/app/mobile
parentv2093 (diff)
downloadmisskey-ac94cf91df8142a4d927f19a944393bf243863e0.tar.gz
misskey-ac94cf91df8142a4d927f19a944393bf243863e0.tar.bz2
misskey-ac94cf91df8142a4d927f19a944393bf243863e0.zip
[Client] :v:
Diffstat (limited to 'src/web/app/mobile')
-rw-r--r--src/web/app/mobile/tags/post-form.tag10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/web/app/mobile/tags/post-form.tag b/src/web/app/mobile/tags/post-form.tag
index 239473703b..28c7796840 100644
--- a/src/web/app/mobile/tags/post-form.tag
+++ b/src/web/app/mobile/tags/post-form.tag
@@ -23,7 +23,7 @@
<mk-uploader ref="uploader"/>
<button ref="upload" onclick={ selectFile }><i class="fa fa-upload"></i></button>
<button ref="drive" onclick={ selectFileFromDrive }><i class="fa fa-cloud"></i></button>
- <button class="cat" onclick={ cat }><i class="fa fa-smile-o"></i></button>
+ <button class="kao" onclick={ kao }><i class="fa fa-smile-o"></i></button>
<button class="poll" onclick={ addPoll }><i class="fa fa-pie-chart"></i></button>
<input ref="file" type="file" accept="image/*" multiple="multiple" onchange={ changeFile }/>
</div>
@@ -165,7 +165,7 @@
> [ref='upload']
> [ref='drive']
- .cat
+ .kao
.poll
display inline-block
padding 0
@@ -182,7 +182,7 @@
</style>
<script>
- import getCat from '../../common/scripts/get-cat';
+ import getKao from '../../common/scripts/get-kao';
this.mixin('api');
@@ -285,8 +285,8 @@
this.unmount();
};
- this.cat = () => {
- this.refs.text.value += getCat();
+ this.kao = () => {
+ this.refs.text.value += getKao();
};
</script>
</mk-post-form>