Compare commits

..

No commits in common. "6c7c08448dfb65953f481cbf40f95f10c51968e2" and "a1725a5f9257ca8d473f169832eb3cdd751e99fa" have entirely different histories.

3 changed files with 2 additions and 3 deletions

View file

@ -97,7 +97,7 @@ pandora.ui.idDialog = function(data) {
labelWidth: 128, labelWidth: 128,
value: Ox.decodeHTMLEntities(key == 'director' && data[key] value: Ox.decodeHTMLEntities(key == 'director' && data[key]
? data[key].join(', ') ? data[key].join(', ')
: ('' + (data[key] || ''))), : ('' + data[key])),
width: formWidth width: formWidth
}) })
.css({display: 'inline-block', margin: '3px'}) .css({display: 'inline-block', margin: '3px'})

View file

@ -75,7 +75,6 @@ pandora.ui.importAnnotationsDialog = function(options) {
if (subtitlesLayer && format == 'srt' && Ox.getObjectById(layers, subtitlesLayer)) { if (subtitlesLayer && format == 'srt' && Ox.getObjectById(layers, subtitlesLayer)) {
$layerSelect.options({value: subtitlesLayer}) $layerSelect.options({value: subtitlesLayer})
} }
updateLanguageSelect();
} }
that[ that[
data.value.length ? 'enableButton' : 'disableButton' data.value.length ? 'enableButton' : 'disableButton'

View file

@ -368,7 +368,7 @@ pandora.ui.infoView = function(data, isMixed) {
.append( .append(
Ox.EditableContent({ Ox.EditableContent({
height: 128, height: 128,
placeholder: formatLight(Ox._(isMixed.notes ? 'Mixed notes' : 'No notes')), placeholder: formatLight(Ox._(isMixed ? 'Mixed notes' : 'No notes')),
tooltip: pandora.getEditTooltip(), tooltip: pandora.getEditTooltip(),
type: 'textarea', type: 'textarea',
value: data.notes || '', value: data.notes || '',