Skip to content
This repository was archived by the owner on Dec 29, 2021. It is now read-only.

Commit e8ab4fb

Browse files
committed
Merge pull request #277 from MALfunction84/master
Fixed #275
2 parents 01c0b93 + ecea305 commit e8ab4fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/browser_action.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ browseraction.loadCalendarsIntoQuickAdd_ = function() {
9797
var dropDown = $('#quick-add-calendar-list');
9898
for (var calendarId in calendars) {
9999
var calendar = calendars[calendarId];
100-
if (calendar.editable) {
100+
if (calendar.editable && calendar.visible) {
101101
dropDown.append($('<option>', {
102102
value: calendar.id,
103103
text: calendar.title

0 commit comments

Comments
 (0)