diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-07-27 19:17:15 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-27 19:17:15 +0900 |
| commit | 9ef477f04b4e496509c6d5d37b7357ca17a8e97e (patch) | |
| tree | 3a4a7be751dfbaa826618e1d337e5b9dfe32d35d /src | |
| parent | :sparkles: (diff) | |
| parent | Fix bug (diff) | |
| download | misskey-9ef477f04b4e496509c6d5d37b7357ca17a8e97e.tar.gz misskey-9ef477f04b4e496509c6d5d37b7357ca17a8e97e.tar.bz2 misskey-9ef477f04b4e496509c6d5d37b7357ca17a8e97e.zip | |
Merge pull request #2010 from acid-chicken/acid-chicken-patch-1
Minify Mk-III
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/desktop/views/components/calendar.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/desktop/views/components/calendar.vue b/src/client/app/desktop/views/components/calendar.vue index 746beca9d5..de9650b21b 100644 --- a/src/client/app/desktop/views/components/calendar.vue +++ b/src/client/app/desktop/views/components/calendar.vue @@ -35,7 +35,7 @@ import Vue from 'vue'; const eachMonthDays = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; function isLeapYear(year) { - return !(year & (year % 25 ? 3 : 5)); + return !(year & (year % 25 ? 3 : 15)); } export default Vue.extend({ |