Folder Sidebar

This commit is contained in:
2026-06-16 15:03:18 +02:00
parent 7fe0013a5c
commit 9ed6475775
6 changed files with 330 additions and 16 deletions
-9
View File
@@ -85,11 +85,6 @@
}
row.appendChild(chevron);
var marker = document.createElement('span');
marker.className = 'tree-marker';
marker.textContent = kind === 'folder' ? '' : '\u00b7';
row.appendChild(marker);
var label = document.createElement('span');
label.className = 'tree-name';
label.textContent = name;
@@ -199,10 +194,6 @@
var rootChev = document.createElement('span');
rootChev.className = 'tree-chevron is-leaf';
rootRow.appendChild(rootChev);
var rootMarker = document.createElement('span');
rootMarker.className = 'tree-marker';
rootRow.appendChild(rootMarker);
var rootLabel = document.createElement('span');
rootLabel.className = 'tree-name';
rootLabel.textContent = '/';
rootRow.appendChild(rootLabel);