This commit is contained in:
ed 2021-03-29 20:53:20 +02:00
parent 7ff08bce57
commit 3a38dcbc05
2 changed files with 7 additions and 4 deletions

View file

@ -1,6 +1,6 @@
# coding: utf-8
VERSION = (0, 10, 3)
VERSION = (0, 10, 4)
CODENAME = "zip it"
BUILD_DT = (2021, 3, 29)

View file

@ -1086,7 +1086,7 @@ var treectl = (function () {
ebi('srv_info').innerHTML = '<span>' + res.srvinf + '</span>';
var nodes = res.dirs.concat(res.files),
sopts = jread('fsort', []);
sopts = jread('fsort', [["lead", -1, ""], ["href", 1, ""]]);
try {
for (var a = sopts.length - 1; a >= 0; a--) {
@ -1507,8 +1507,11 @@ var mukey = (function () {
}
function render() {
var ci = find_file_col('Key'),
i = ci[0],
var ci = find_file_col('Key');
if (!ci)
return;
var i = ci[0],
min = ci[1],
rows = ebi('files').tBodies[0].rows;