1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update lists

This commit is contained in:
Luke Pulverenti 2016-02-07 16:16:02 -05:00
parent dd1b33021d
commit 1121dd8ae4
22 changed files with 192 additions and 761 deletions

View file

@ -501,7 +501,7 @@
$('#chkEstimateContentLength', popup).checked(transcodingProfile.EstimateContentLength || false).checkboxradio('refresh');
$('#chkReportByteRangeRequests', popup).checked(transcodingProfile.TranscodeSeekInfo == 'Bytes').checkboxradio('refresh');
$('.radioTabButton:first', popup).checked(true).checkboxradio('refresh').trigger('change');
$('.radioTabButton:first', popup).trigger('click');
popup.popup('open');
}
@ -617,7 +617,7 @@
$('#selectContainerProfileType', popup).val(containerProfile.Type || 'Video').trigger('change');
$('#txtContainerProfileContainer', popup).val(containerProfile.Container || '');
$('.radioTabButton:first', popup).checked(true).checkboxradio('refresh').trigger('change');
$('.radioTabButton:first', popup).trigger('click');
popup.popup('open');
}
@ -719,7 +719,7 @@
$('#selectCodecProfileType', popup).val(codecProfile.Type || 'Video').trigger('change');
$('#txtCodecProfileCodec', popup).val(codecProfile.Codec || '');
$('.radioTabButton:first', popup).checked(true).checkboxradio('refresh').trigger('change');
$('.radioTabButton:first', popup).trigger('click');
popup.popup('open');
}
@ -827,7 +827,7 @@
$('#txtResponseProfileAudioCodec', popup).val(responseProfile.AudioCodec || '');
$('#txtResponseProfileVideoCodec', popup).val(responseProfile.VideoCodec || '');
$('.radioTabButton:first', popup).checked(true).checkboxradio('refresh').trigger('change');
$('.radioTabButton:first', popup).trigger('click');
popup.popup('open');
}
@ -944,9 +944,12 @@
var page = this;
$('.radioTabButton', page).on('change', function () {
$('.radioTabButton', page).on('click', function () {
var elem = $('.' + this.value, page);
$(this).siblings().removeClass('ui-btn-active');
$(this).addClass('ui-btn-active');
var elem = $('.' + this.getAttribute('data-value'), page);
elem.siblings('.tabContent').hide();
elem.show();
@ -1070,8 +1073,7 @@
var page = this;
$('.radioTabButton', page).checked(false).checkboxradio('refresh');
$('#radioInfo', page).checked(true).checkboxradio('refresh').trigger('change');
$('#radioInfo', page).trigger('click');
loadProfile(page);
});