Browse Source

Support sorting Web UI tables via touch (#15205)

adaptive-webui-19844
Tom Piccirello 3 years ago committed by GitHub
parent
commit
7974b5a95c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      src/webui/www/private/scripts/dynamicTable.js

7
src/webui/www/private/scripts/dynamicTable.js

@ -264,12 +264,19 @@ window.qBittorrent.DynamicTable = (function() { @@ -264,12 +264,19 @@ window.qBittorrent.DynamicTable = (function() {
this.setSortedColumn(el.columnName);
}.bind(this);
const onTouch = function(e) {
const column = e.target.columnName;
this.currentHeaderAction = '';
this.setSortedColumn(column);
}.bind(this);
const ths = this.fixedTableHeader.getElements('th');
for (let i = 0; i < ths.length; ++i) {
const th = ths[i];
th.addEvent('mousemove', mouseMoveFn);
th.addEvent('mouseout', mouseOutFn);
th.addEvent('touchend', onTouch);
th.makeResizable({
modifiers: {
x: '',

Loading…
Cancel
Save