mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-11 15:56:17 -07:00
Support sorting Web UI tables via touch (#15205)
This commit is contained in:
parent
ed4570cb4d
commit
7974b5a95c
1 changed files with 7 additions and 0 deletions
|
@ -264,12 +264,19 @@ window.qBittorrent.DynamicTable = (function() {
|
||||||
this.setSortedColumn(el.columnName);
|
this.setSortedColumn(el.columnName);
|
||||||
}.bind(this);
|
}.bind(this);
|
||||||
|
|
||||||
|
const onTouch = function(e) {
|
||||||
|
const column = e.target.columnName;
|
||||||
|
this.currentHeaderAction = '';
|
||||||
|
this.setSortedColumn(column);
|
||||||
|
}.bind(this);
|
||||||
|
|
||||||
const ths = this.fixedTableHeader.getElements('th');
|
const ths = this.fixedTableHeader.getElements('th');
|
||||||
|
|
||||||
for (let i = 0; i < ths.length; ++i) {
|
for (let i = 0; i < ths.length; ++i) {
|
||||||
const th = ths[i];
|
const th = ths[i];
|
||||||
th.addEvent('mousemove', mouseMoveFn);
|
th.addEvent('mousemove', mouseMoveFn);
|
||||||
th.addEvent('mouseout', mouseOutFn);
|
th.addEvent('mouseout', mouseOutFn);
|
||||||
|
th.addEvent('touchend', onTouch);
|
||||||
th.makeResizable({
|
th.makeResizable({
|
||||||
modifiers: {
|
modifiers: {
|
||||||
x: '',
|
x: '',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue