forked from 0x2620/pandora
select subtitles layer by default if selecting an srt file
This commit is contained in:
parent
69083d1521
commit
dd7e1d0ba0
1 changed files with 8 additions and 1 deletions
|
@ -68,7 +68,14 @@ pandora.ui.importAnnotationsDialog = function(options) {
|
|||
.bindEvent({
|
||||
change: function(data) {
|
||||
$status.empty();
|
||||
data.value.length && $formatSelect.options({value: Ox.last(data.value[0].name.split('.'))});
|
||||
if (data.value.length) {
|
||||
var format = Ox.last(data.value[0].name.split('.'));
|
||||
$formatSelect.options({value: format});
|
||||
var subtitlesLayer = pandora.getSubtitlesLayer()
|
||||
if (subtitlesLayer && format == 'srt' && Ox.getObjectById(layers, subtitlesLayer)) {
|
||||
$layerSelect.options({value: subtitlesLayer})
|
||||
}
|
||||
}
|
||||
that[
|
||||
data.value.length ? 'enableButton' : 'disableButton'
|
||||
]('import');
|
||||
|
|
Loading…
Reference in a new issue