forked from 0x2620/pandora
fix statistics dialog
This commit is contained in:
parent
3d03e17fce
commit
5b291d4834
1 changed files with 1 additions and 1 deletions
|
@ -350,7 +350,7 @@ pandora.ui.statisticsDialog = function() {
|
||||||
top: top + 'px'
|
top: top + 'px'
|
||||||
})
|
})
|
||||||
.appendTo($content);
|
.appendTo($content);
|
||||||
top += (isDay ? 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') {
|
} else if (id == 'locations') {
|
||||||
['continent', 'region', 'country', 'city'].forEach(function(key) {
|
['continent', 'region', 'country', 'city'].forEach(function(key) {
|
||||||
|
|
Loading…
Reference in a new issue