summaryrefslogtreecommitdiff
path: root/src/client/app/common/scripts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-08-18 04:22:00 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-08-18 04:22:00 +0900
commite922d8904c60857b57f09488190212cfacc7e502 (patch)
treeed4441af78c5b91e422609802456e8eec64ca512 /src/client/app/common/scripts
parentUpdate rate limit setting (diff)
parentMerge pull request #2302 from syuilo/kao-to-faces (diff)
downloadmisskey-e922d8904c60857b57f09488190212cfacc7e502.tar.gz
misskey-e922d8904c60857b57f09488190212cfacc7e502.tar.bz2
misskey-e922d8904c60857b57f09488190212cfacc7e502.zip
Merge branch 'master' of https://github.com/syuilo/misskey
Diffstat (limited to 'src/client/app/common/scripts')
-rw-r--r--src/client/app/common/scripts/get-face.ts (renamed from src/client/app/common/scripts/get-kao.ts)4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/common/scripts/get-kao.ts b/src/client/app/common/scripts/get-face.ts
index 2c9280c9b6..79cf7a1be4 100644
--- a/src/client/app/common/scripts/get-kao.ts
+++ b/src/client/app/common/scripts/get-face.ts
@@ -1,4 +1,4 @@
-const kaos = [
+const faces = [
'(=^・・^=)',
'v(\'ω\')v',
'🐡( \'-\' 🐡 )フグパンチ!!!!',
@@ -7,4 +7,4 @@ const kaos = [
'(Δ・x・Δ)'
];
-export default () => kaos[Math.floor(Math.random() * kaos.length)];
+export default () => faces[Math.floor(Math.random() * faces.length)];