log version

This commit is contained in:
Jan Gerber 2015-03-22 19:34:42 +05:30
commit ce47b8a64d
2 changed files with 8 additions and 2 deletions

View file

@ -121,8 +121,11 @@ oml.ui.transfersDialog = function() {
});
oml.bindEvent({
transfer: Ox.throttle(function() {
$list.reloadList(true);
transfer: Ox.throttle(function(data) {
var current = $list.value(data.id);
if (!Ox.isEmpty(current) && current.progress != data.progress) {
$list.value(data.id, 'progress', data.progress);
}
}, 1000)
});