From 09fde676ae15d073ce367db1d6011e42c494c492 Mon Sep 17 00:00:00 2001 From: Gabriele Date: Sun, 9 Nov 2014 21:10:50 +0100 Subject: [PATCH] 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. --- src/webui/www/public/scripts/dynamicTable.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/webui/www/public/scripts/dynamicTable.js b/src/webui/www/public/scripts/dynamicTable.js index 46b4eb38b..fd08d17f3 100644 --- a/src/webui/www/public/scripts/dynamicTable.js +++ b/src/webui/www/public/scripts/dynamicTable.js @@ -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); },