Bug 309505 Switching views in Lightning results in gray screen, aka decks suck. r=dmose

This commit is contained in:
jminta%gmail.com 2005-09-23 01:09:47 +00:00
Родитель 1be2e6565e
Коммит bbb6879fe4
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -149,6 +149,13 @@ function selectedCalendarPane(event)
function LtnObserveDisplayDeckChange(event)
{
var deck = event.target;
// Bug 309505: The 'select' event also fires when we change the selected
// panel of calendar-view-box. Workaround with this check.
if (deck.id != "displayDeck") {
return;
}
var id = null;
try { id = deck.selectedPanel.id } catch (e) { }
if (id == "calendar-view-box") {