forked from 0x2620/pandora
fix pad.ma info page css
This commit is contained in:
parent
ec62c46e7d
commit
cb62ff8630
1 changed files with 2 additions and 5 deletions
|
@ -260,7 +260,6 @@ pandora.ui.infoView = function(data) {
|
|||
})
|
||||
.appendTo($div);
|
||||
});
|
||||
$('<br>').appendTo($center);
|
||||
} else {
|
||||
html = [];
|
||||
['location', 'date', 'language', 'duration'].forEach(function(key) {
|
||||
|
@ -300,7 +299,6 @@ pandora.ui.infoView = function(data) {
|
|||
})
|
||||
.appendTo($div);
|
||||
});
|
||||
$('<br>').appendTo($center);
|
||||
} else if (data.director || data.cinematographer || data.featuring) {
|
||||
html = [];
|
||||
['director', 'cinematographer', 'featuring'].forEach(function(key) {
|
||||
|
@ -341,7 +339,6 @@ pandora.ui.infoView = function(data) {
|
|||
}
|
||||
})
|
||||
.appendTo($div);
|
||||
$('<br>').appendTo($center);
|
||||
|
||||
} else if (data.topic) {
|
||||
html = formatKey('topics') + formatValue(data.topic, 'topic');
|
||||
|
@ -360,10 +357,10 @@ pandora.ui.infoView = function(data) {
|
|||
placeholder: formatLight('No Summary'),
|
||||
tooltip: canEdit ? 'Doubleclick to edit' : '',
|
||||
type: 'textarea',
|
||||
value: data.summary || '',
|
||||
//width: 300
|
||||
value: data.summary || ''
|
||||
})
|
||||
.css(css)
|
||||
.css({marginTop: '2px'})
|
||||
.bindEvent({
|
||||
submit: function(event) {
|
||||
editMetadata('summary', event.value);
|
||||
|
|
Loading…
Reference in a new issue