Skip to content

Commit

Permalink
Merge pull request #16 from matgnt/master
Browse files Browse the repository at this point in the history
Fix Boolean default values to "false" as reported in issue #15
  • Loading branch information
HaithemMosbahi authored Aug 18, 2017
2 parents 72ac8f2 + e713c57 commit 97f64e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scheduler-component.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
},
allDaySlot: {
type: Boolean,
value: true
value: false
},
allDayText: {
type: String,
Expand All @@ -109,7 +109,7 @@
},
slotEventOverlap: {
type: Boolean,
value: true
value: false
},
nowIndicator: Boolean,
dragRevertDuration: {
Expand All @@ -122,7 +122,7 @@
},
dragScroll: {
type: Boolean,
value: true
value: false
},
eventOverlap: Object,
eventConstraint: Object,
Expand Down

0 comments on commit 97f64e8

Please sign in to comment.