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() {
var trs = this.table.getChildren('tr');
trs.sort(this.sortfunction);
this.table.set('html', '');
this.table.adopt(trs);
},