kthornbloom/Monthly

Adding tittle every day when the event is longer than a day

godhandkiller opened this issue · 1 comments

I'm making a calendar and some events are longer than a day, the issue is that sometimes the event breaks the if is not on line (like my example with the event on green) so I want to know how can I add the name of the date on every day so the user doesn't get confuse with that green square with nothing on it since it's not inline with the event on the day before

monthly_issue

I was able to find a solution
In line 256 of monthly.js I delete this validation:
(doShowTitle ? eventTitle : "")
so the line would stay like this
+ ">" + eventTitle + dayEndTags)
And that made the event name to show in every day
monthly_issue2