diff options
Diffstat (limited to 'interface/js/app/symbols.js')
-rw-r--r-- | interface/js/app/symbols.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/interface/js/app/symbols.js b/interface/js/app/symbols.js index 893eddb3b..203cf0d14 100644 --- a/interface/js/app/symbols.js +++ b/interface/js/app/symbols.js @@ -186,16 +186,17 @@ define(["jquery", "app/common", "footable"], /* eslint-enable consistent-this, no-underscore-dangle, one-var-declaration-per-line */ common.tables.symbols = FooTable.init("#symbolsTable", { + cascade: true, columns: [ {sorted: true, direction: "ASC", name: "group", title: "Group"}, {name: "symbol", title: "Symbol"}, - {name: "description", title: "Description", breakpoints: "xs sm"}, + {name: "description", title: "Description", breakpoints: "sm"}, {name: "weight", title: "Score"}, {name: "frequency", title: "Frequency", - breakpoints: "xs sm", + breakpoints: "sm", sortValue: function (value) { return Number(value).toFixed(2); }}, - {name: "time", title: "Avg. time", breakpoints: "xs sm"}, + {name: "time", title: "Avg. time", breakpoints: "sm"}, ], rows: items[0], paging: { |