summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-07-27 19:17:15 +0900
committerGitHub <noreply@github.com>2018-07-27 19:17:15 +0900
commit9ef477f04b4e496509c6d5d37b7357ca17a8e97e (patch)
tree3a4a7be751dfbaa826618e1d337e5b9dfe32d35d /src
parent:sparkles: (diff)
parentFix bug (diff)
downloadmisskey-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.vue2
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({