dont show name for featured lists
This commit is contained in:
parent
9a8e40adec
commit
fcf1b706da
1 changed files with 4 additions and 1 deletions
|
@ -175,7 +175,10 @@ pandora.ui.listInfo = function() {
|
||||||
$title = Ox.Editable({
|
$title = Ox.Editable({
|
||||||
editable: editable,
|
editable: editable,
|
||||||
format: function(value) {
|
format: function(value) {
|
||||||
return Ox.encodeHTML(editable ? value : item.user + ': ' + value)
|
return Ox.encodeHTML(
|
||||||
|
item.status == 'featured' || editable
|
||||||
|
? value
|
||||||
|
: item.user + ': ' + value)
|
||||||
},
|
},
|
||||||
tooltip: editable ? 'Doubleclick to edit title' : '',
|
tooltip: editable ? 'Doubleclick to edit title' : '',
|
||||||
value: item.name,
|
value: item.name,
|
||||||
|
|
Loading…
Reference in a new issue