fix #1005 (info view: nbsp in 'MM min' and 'SS sec')
This commit is contained in:
parent
f39b2ddf3f
commit
4ccebb882d
1 changed files with 2 additions and 2 deletions
|
@ -248,8 +248,8 @@ pandora.ui.infoView = function(data) {
|
|||
html.push(
|
||||
formatKey(key) + (
|
||||
key != 'runtime' ? formatValue(data[key], key)
|
||||
: data[key] < 60 ? Math.round(data[key]) + ' sec'
|
||||
: Math.round(data[key] / 60) + ' min'
|
||||
: data[key] < 60 ? Math.round(data[key]) + ' sec'
|
||||
: Math.round(data[key] / 60) + ' min'
|
||||
)
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue