Skip the first encountered node (since it is the root of the collapsed tree)
This commit is contained in:
parent
04d4024d8c
commit
44eef148e7
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ ImageHistoryTree.prototype.draw = function(container) {
|
|||
.html(function(d) {
|
||||
var html = '';
|
||||
if (d.collapsed) {
|
||||
for (var i = 0; i < d.encountered.length; ++i) {
|
||||
for (var i = 1; i < d.encountered.length; ++i) {
|
||||
html += '<span>' + d.encountered[i].image.id.substr(0, 12) + '</span>';
|
||||
html += '<span class="created">' + formatTime(d.encountered[i].image.created) + '</span>';
|
||||
}
|
||||
|
|
Reference in a new issue