This commit is contained in:
Matthias Schiffer 2016-04-25 18:33:10 +02:00
commit c936fd8054
1 changed files with 14 additions and 5 deletions

View File

@ -22,18 +22,27 @@ define(["lib/helper"], function (Helper) {
return el
}
function mkRow(table, label, stream) {
var tr = document.createElement("tr")
function mkRow(table, label, stream, sorted) {
var i = -1
if (sorted) {
for (i = 0; i < table.rows.length; i++) {
if (label < table.rows[i].firstChild.textContent)
break
}
}
var tr = table.insertRow(i)
var th = document.createElement("th")
var td = streamElement("td", stream)
th.textContent = label
tr.appendChild(th)
tr.appendChild(td)
table.appendChild(tr)
tr.destroy = function () {
td.destroy()
table.removeChild(tr)
table.tBodies[0].removeChild(tr)
}
return tr
@ -127,7 +136,7 @@ define(["lib/helper"], function (Helper) {
stream.startWith(d)
.map(peer.path)
.filter(function (d) { return d !== undefined })
.map(prettyPeer))
.map(prettyPeer), true)
})
}
})