Calendar and table fixes

Fixed: Last day on calendar will be normal width
Fixed: Tables shouldn't overflow due to excessively long titles
This commit is contained in:
Mark McDowall 2014-05-19 18:52:20 -07:00
parent 94f9db940b
commit e2bf6fd6a4
5 changed files with 29 additions and 5 deletions

View file

@ -30,6 +30,9 @@ define(
onShow: function () {
this.$('.fc-button-today').click();
this.$el.fullCalendar('render');
this.$('.fc-day-header').css('width: 14.3%');
},
_viewRender: function (view) {
@ -38,6 +41,7 @@ define(
}
this._getEvents(view);
this.$('.fc-day-header').css('width: 14.3%');
},
_eventRender: function (event, element) {