kthornbloom / Monthly

A jQuery based responsive calendar
http://kthornbloom.com/monthly/
Other
316 stars 108 forks source link

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

Closed godhandkiller closed 6 years ago

godhandkiller commented 6 years ago

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

godhandkiller commented 6 years ago

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