Fixed sorting log files on settings dialog
This commit is contained in:
parent
de954c6bf8
commit
26f43de07d
1 changed files with 2 additions and 2 deletions
|
|
@ -22,8 +22,8 @@ $(function() {
|
|||
},
|
||||
"size": function(a, b) {
|
||||
// sorts descending
|
||||
if (a["bytes"] > b["bytes"]) return -1;
|
||||
if (a["bytes"] < b["bytes"]) return 1;
|
||||
if (a["size"] > b["size"]) return -1;
|
||||
if (a["size"] < b["size"]) return 1;
|
||||
return 0;
|
||||
}
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue