@@ -2,9 +2,11 @@
var ComponentFootprint = Class.extend({
dateRange: null,
+ isAllDay: false,
- constructor: function(dateRange) {
+ constructor: function(dateRange, isAllDay) {
this.dateRange = dateRange;
+ this.isAllDay = isAllDay;
}
});