You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.
In TouchCalendarEventsBase.js, sort is called on eventStore repeatedly, for every date. In my test, moving sort() to before dates.each() reduced the time to display a new month in month view from 3 secs to 0.5 secs (with 300 event records, Chrome desktop browser).
dates.each(function(dateObj){varcurrentDate=dateObj.get('date'),currentDateTime=currentDate.getTime(),takenDatePositions=[];// stores 'row positions' that are taken on current date// sort the Events Store so we have a consistent ordering to ensure no overlapseventStore.sort(this.getPlugin().getStartEventField(),this.getEventSortDirection());
The text was updated successfully, but these errors were encountered:
In TouchCalendarEventsBase.js, sort is called on eventStore repeatedly, for every date. In my test, moving sort() to before dates.each() reduced the time to display a new month in month view from 3 secs to 0.5 secs (with 300 event records, Chrome desktop browser).
The text was updated successfully, but these errors were encountered: