Hide webpanels checkbox for folders/separators.

This commit is contained in:
blakeross%telocity.com 2003-08-06 02:58:52 +00:00
Родитель b7ab30e625
Коммит 85e98ae5a9
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -199,6 +199,10 @@ function Init()
var isSeparator = BookmarksUtils.resolveType(resource) == "BookmarkSeparator";
if (isContainerFlag || isSeparator) {
// Hide the "Load in sidebar" checkbox unless it's a bookmark.
var webpanelCheckbox = document.getElementById("webpanel");
webpanelCheckbox.hidden = true;
// If it is a folder, it has no URL or Keyword
document.getElementById("locationrow").setAttribute("hidden", "true");
document.getElementById("shortcutrow").setAttribute("hidden", "true");