forked from 0x2620/pandora
indiancinema info view: fix name links above description
This commit is contained in:
parent
798b26d61b
commit
02c4732449
1 changed files with 2 additions and 1 deletions
|
@ -662,7 +662,7 @@ pandora.ui.infoView = function(data) {
|
|||
['studios', 'names'].forEach(function(key) {
|
||||
descriptions[key].forEach(function(value) {
|
||||
if (canEdit || value.description) {
|
||||
$('<div>')
|
||||
var $name = $('<div>')
|
||||
.css(css)
|
||||
.css({marginTop: '12px', fontWeight: 'bold'})
|
||||
.html(
|
||||
|
@ -674,6 +674,7 @@ pandora.ui.infoView = function(data) {
|
|||
}).join(', ') + ')'
|
||||
)
|
||||
.appendTo($descriptions);
|
||||
pandora.createLinks($name);
|
||||
Ox.EditableContent({
|
||||
clickLink: pandora.clickLink,
|
||||
editable: canEdit,
|
||||
|
|
Loading…
Reference in a new issue