forked from 0x2620/pandora
fix statistics dialog
This commit is contained in:
parent
2d5b55e118
commit
a6f3495663
1 changed files with 1 additions and 1 deletions
|
@ -350,7 +350,7 @@ pandora.ui.statisticsDialog = function() {
|
|||
top: top + 'px'
|
||||
})
|
||||
.appendTo($content);
|
||||
top += (isDay ? Ox.min(Ox.len(data[mode][key]), 30) : Ox.len(data[mode][key])) * 16 + 32;
|
||||
top += (isDay ? Ox.min([Ox.len(data[mode].day), 30]) : Ox.len(data[mode][key])) * 16 + 32;
|
||||
});
|
||||
} else if (id == 'locations') {
|
||||
['continent', 'region', 'country', 'city'].forEach(function(key) {
|
||||
|
|
Loading…
Reference in a new issue