quiet js errors, since we haven't gotten dnd working for search yet.

hide the thread specific columns in the search pane.  sr=bienvenu
This commit is contained in:
sspitzer%netscape.com 2001-03-30 07:14:19 +00:00
Родитель 305fe11ca3
Коммит 1793d4706b
1 изменённых файлов: 11 добавлений и 0 удалений

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

@ -187,6 +187,11 @@ function searchOnLoad()
onMore(null);
document.commandDispatcher.updateCommands('mail-search');
moveToAlertPosition();
// hide the thread related columns. you can't thread search results
var threadCol = document.getElementById("threadCol");
threadCol.setAttribute("hidden","true");
SetHiddenAttributeOnThreadOnlyColumns("true");
}
@ -593,3 +598,9 @@ function MoveMessageInSearch(destFolder)
dump("MsgMoveMessage failed: " + ex + "\n");
}
}
function BeginDragThreadPane(event)
{
// no search pane dnd yet
return false;
}