diff options
| author | Tosuke <tasukeprg@gmail.com> | 2017-01-06 14:39:24 +0900 |
|---|---|---|
| committer | Tosuke <tasukeprg@gmail.com> | 2017-01-06 14:39:24 +0900 |
| commit | 0420fee5d2c6a944a7b2cf13307dfadce9796b59 (patch) | |
| tree | d8c361b2c340c03927a5a417e5a91b3ab58db34b /src/web/app/common/scripts/date-stringify.ls | |
| parent | [Swagger]Add /auth/accept (diff) | |
| parent | Update changelog (diff) | |
| download | sharkey-0420fee5d2c6a944a7b2cf13307dfadce9796b59.tar.gz sharkey-0420fee5d2c6a944a7b2cf13307dfadce9796b59.tar.bz2 sharkey-0420fee5d2c6a944a7b2cf13307dfadce9796b59.zip | |
Merge branch 'master' of github.com:syuilo/misskey into swagger
Diffstat (limited to 'src/web/app/common/scripts/date-stringify.ls')
| -rw-r--r-- | src/web/app/common/scripts/date-stringify.ls | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/app/common/scripts/date-stringify.ls b/src/web/app/common/scripts/date-stringify.ls index 9aa8b3e6c5..7e85192ce7 100644 --- a/src/web/app/common/scripts/date-stringify.ls +++ b/src/web/app/common/scripts/date-stringify.ls @@ -3,7 +3,7 @@ module.exports = (date) -> text = date.get-full-year! + \年 + - date.get-month! + \月 + + date.get-month! + 1 + \月 + date.get-date! + \日 + ' ' + date.get-hours! + \時 + |