This commit is contained in:
Thomas Wilburn 2013-11-19 08:19:47 -08:00
parent 2545890048
commit e0a03a46d3

View file

@ -147,6 +147,7 @@ define([
var walker = function(node) {
var li = document.createElement("li");
var a = document.createElement("a");
a.setAttribute("tabindex", -1);
li.append(a);
if (node.isDirectory) {
a.innerHTML = node.label;