зеркало из https://github.com/mozilla/pjs.git
Checked in patches for bug 242980
This commit is contained in:
Родитель
cd745974d6
Коммит
c128ae14ea
|
@ -524,7 +524,9 @@ var treeView =
|
|||
getCellText : function(row,column)
|
||||
{
|
||||
calendarEvent = gEventArray[row];
|
||||
switch( column.id )
|
||||
|
||||
// Moz1.8 trees require column.id, moz1.7 and earlier trees use column.
|
||||
switch( column.id || column )
|
||||
{
|
||||
case "unifinder-search-results-tree-col-title":
|
||||
return( calendarEvent.title );
|
||||
|
|
|
@ -380,7 +380,8 @@ var toDoTreeView =
|
|||
if( !calendarToDo )
|
||||
return false;
|
||||
|
||||
switch( column.id )
|
||||
// Moz1.8 trees require column.id, moz1.7 and earlier trees use column.
|
||||
switch( column.id || column )
|
||||
{
|
||||
case "unifinder-todo-tree-col-completed":
|
||||
return( "" );
|
||||
|
|
Загрузка…
Ссылка в новой задаче