Comment out the previously used event sorting method.
This commit is contained in:
parent
b43422dc50
commit
2a0113412a
1 changed files with 2 additions and 0 deletions
|
@ -425,6 +425,7 @@ class Calendar {
|
|||
this.eventContainerNode.appendTo(this.containerNode);
|
||||
}
|
||||
|
||||
/*
|
||||
sortEventNodesByEndTimeAndLocation () {
|
||||
this.events.sort((event1, event2) => {
|
||||
return event2.endDate.getTime() - event1.endDate.getTime();
|
||||
|
@ -442,6 +443,7 @@ class Calendar {
|
|||
|
||||
this.eventContainerNode.appendTo(this.containerNode);
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
// Event overflow tooltip (using tipso library)
|
||||
|
|
Loading…
Reference in a new issue