Ver Fonte

allday to ComponentFootprint

Adam Shaw há 8 anos atrás
pai
commit
c22b8667d8
1 ficheiros alterados com 3 adições e 1 exclusões
  1. 3 1
      src/models/ComponentFootprint.js

+ 3 - 1
src/models/ComponentFootprint.js

@@ -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;
 	}
 
 });