Skip to content

Commit bebaf25

Browse files
rwestlundadmwx7
authored andcommitted
Create the default date with hours set to 0
1 parent 6429cce commit bebaf25

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

paper-calendar.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,9 @@
264264
type: Date,
265265
notify: true,
266266
value() {
267-
return new Date();
267+
var d = new Date();
268+
d.setHours(0, 0, 0, 0);
269+
return d;
268270
},
269271
observer: '_dateChanged'
270272
},

0 commit comments

Comments
 (0)