fix statistics dialog layout

This commit is contained in:
rolux 2013-05-08 11:53:33 +00:00
parent 3d6f15a271
commit 86081ca08a

View file

@ -425,7 +425,7 @@ pandora.ui.statisticsDialog = function() {
top: top + 'px' top: top + 'px'
}) })
.appendTo($content); .appendTo($content);
top += Ox.len(data[mode][key]) * 16 + 32; top += Math.min(Ox.len(data[mode][key]), 1000) * 16 + 32;
}); });
} else if (id == 'platforms') { } else if (id == 'platforms') {
['', 'version'].forEach(function(version, i) { ['', 'version'].forEach(function(version, i) {