Skip to content
Snippets Groups Projects
Commit c936fd80 authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

Merge branch 'master' of https://github.com/corvusmo/gluon

parents 8f6cc2da 80515c08
No related branches found
No related tags found
No related merge requests found
......@@ -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)
})
}
})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment