Removing unused files

This commit is contained in:
sean kenny
2014-09-09 10:38:54 +01:00
parent 7092654315
commit 89e8f4eb3a
192 changed files with 0 additions and 17999 deletions
-27
View File
@@ -1,27 +0,0 @@
function BasicEventRenderer() {
var t = this;
// exports
t.renderEvents = renderEvents;
t.clearEvents = clearEvents;
// imports
DayEventRenderer.call(t);
function renderEvents(events, modifiedEventId) {
t.renderDayEvents(events, modifiedEventId);
}
function clearEvents() {
t.getDaySegmentContainer().empty();
}
// TODO: have this class (and AgendaEventRenderer) be responsible for creating the event container div
}