Skip to content

Commit 468994f

Browse files
authored
Merge pull request jsmodules#84 from fbertone/patch-3
fix jsmodules#83
2 parents 0fd48d7 + 5dacd4d commit 468994f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/angular-material-calendar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ angular.module("materialCalendar").service("MaterialCalendarData", [function ()
172172
};
173173

174174
this.setDayContent = function(date, content) {
175-
this.data[this.getDayKey(date)] = content || this.data[this.getDayKey(date)] || "";
175+
this.data[this.getDayKey(date)] = content || "";
176176
};
177177
}
178178
return new CalendarData();

0 commit comments

Comments
 (0)