1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 07:18:08 +00:00

WebUI: Don't empty transfer list before updating it

This causes the list from disappearing in IE 10.
No longer needed table rows are deleted anyway.
This commit is contained in:
Gabriele 2014-11-09 21:10:50 +01:00
parent 6d64f2430c
commit 09fde676ae

View File

@ -126,7 +126,6 @@ var dynamicTable = new Class ({
updateSort: function() { updateSort: function() {
var trs = this.table.getChildren('tr'); var trs = this.table.getChildren('tr');
trs.sort(this.sortfunction); trs.sort(this.sortfunction);
this.table.set('html', '');
this.table.adopt(trs); this.table.adopt(trs);
}, },