Browse Source

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.
adaptive-webui-19844
Gabriele 10 years ago
parent
commit
09fde676ae
  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