Browse Source

Merge pull request #2150 from pmzqla/webui-fix

WebUI: Don't empty transfer list before updating it
adaptive-webui-19844
sledgehammer999 10 years ago
parent
commit
d642ddc795
  1. 1
      src/webui/www/public/scripts/dynamicTable.js

1
src/webui/www/public/scripts/dynamicTable.js

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

Loading…
Cancel
Save