mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-04 11:26:09 +00:00
Bug 305597 Compare calendar uri to make active calendar checkmarks work. r=mvl
This commit is contained in:
parent
964f2e1a0d
commit
5406a9f97c
@ -40,7 +40,7 @@ function getListItem(aCalendar) {
|
|||||||
for (item = calendarList.firstChild;
|
for (item = calendarList.firstChild;
|
||||||
item;
|
item;
|
||||||
item = item.nextSibling) {
|
item = item.nextSibling) {
|
||||||
if (item.calendar == aCalendar ) {
|
if (item.calendar && item.calendar.uri.equals(aCalendar.uri)) {
|
||||||
return item;
|
return item;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user