diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-01-04 15:46:12 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-01-04 15:46:12 +0900 |
| commit | 1232286158629e805093cd13ad6bc12ca337f015 (patch) | |
| tree | c917dd057ea676abd7cc5f1565fa9baa07afe9c3 /src/web/app/common/scripts | |
| parent | Use nyaize package for nya filter :package: (diff) | |
| download | sharkey-1232286158629e805093cd13ad6bc12ca337f015.tar.gz sharkey-1232286158629e805093cd13ad6bc12ca337f015.tar.bz2 sharkey-1232286158629e805093cd13ad6bc12ca337f015.zip | |
Fix bug
Diffstat (limited to 'src/web/app/common/scripts')
| -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! + \時 + |