pull/1876/head
Yuyang Liu 2016-12-20 14:07:44 +08:00 committed by 杨奕
parent 15e74b6e7d
commit 3a774939ef
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@
} }
if (selectionMode === 'day' && (cell.type === 'normal' || cell.type === 'today') && if (selectionMode === 'day' && (cell.type === 'normal' || cell.type === 'today') &&
this.year === this.date.getFullYear() && this.month === this.date.getMonth() && monthDate === Number(cell.text)) { Number(this.year) === this.date.getFullYear() && this.month === this.date.getMonth() && monthDate === Number(cell.text)) {
classes.push('current'); classes.push('current');
} }