calendar count?
![]() ![]() |
What does the calendar count display?
|
![]() ![]() |
The calendar count shows you how many events you have that are happening today. It can't really be "cleared" (without removing an event, obviously).
|
![]() ![]() |
Can the counter be disabled somehow?
|
![]() ![]() |
You will have to modify the Something like this might work:
_updateCountBox: function (id, count, color, background) {
$(id).fadeOut(400, function() {
if (count > 0) $(this).html(count).css({'color': color, 'background-color': background}).fadeIn(300);
});
}
Note: This is untested, but it _should_ work as-is. |
![]() ![]() |
What about adding the ability to count events other than just the user's default "calendar?" This would be tremendously useful, as it can be misleading to see an incorrectly low count when you have events upcoming on other "calendars." |
![]() ![]() |
Calendars on Google Calendar are poorly implemented. Working with the API is even worse. That said, it IS on my to-do list, so it will be possible at some point. IF they had a "today" feed available via API, that would save a ton of time for developers such as myself, but sadly that is not the case. |
![]() ![]() |
Hmm... that's too bad, but I'm not surprised. Bummer! Thanks, though, and keep up the GREAT work! |

