Unstacked the tables, made some card tweaks.

This commit is contained in:
2017-02-25 13:04:33 +11:00
parent 1474e9227e
commit 8457415efc
4 changed files with 30 additions and 10 deletions
+9 -2
View File
@@ -47,10 +47,17 @@ var printCSV = function (fname, node) {
if (request.status === 200) {
node.innerHTML = "";
var table = parseCSVToTable(request.responseText, ';');
table.id = "table";
table.className = "ui celled table";
node.appendChild(table);
table.className = "ui celled table unstackable";
var scrollable = document.createElement("DIV");
scrollable.className = "scrollable";
scrollable.appendChild(table);
node.appendChild(scrollable);
var sorter = tsorter.create("table");
}
else {