Fix table view rendering/updating

This commit is contained in:
Thomas Bruederli 2014-07-09 15:26:34 +02:00
parent 339de13689
commit 633810b6a7

View file

@ -4758,6 +4758,7 @@ function ListEventRenderer() {
function renderEvents(events, modifiedEventId) {
events.sort(sortCmp);
clearEvents();
renderSegs(compileSegs(events), modifiedEventId);
}
@ -5095,6 +5096,7 @@ function TableEventRenderer() {
function renderEvents(events, modifiedEventId) {
events.sort(sortCmp);
clearEvents();
renderSegs(compileSegs(events), modifiedEventId);
getListContainer().removeClass('fc-list-smart fc-list-day fc-list-month fc-list-week').addClass('fc-list-' + opt('listSections'));
}