Skip to content

Commit

Permalink
remove unused text
Browse files Browse the repository at this point in the history
  • Loading branch information
LukePulverenti committed Nov 1, 2016
1 parent 20c0a4c commit 902b96f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
$('#chkOrganize', page).checked(config.EnableAutoOrganize);
$('#chkConvertRecordings', page).checked(config.EnableRecordingEncoding);
$('#chkPreserveAudio', page).checked(config.EnableOriginalAudioWithEncodedRecordings || false);
$('#chkPreserveVideo', page).checked(config.RecordedVideoCodec == 'copy');

$('#txtPrePaddingMinutes', page).val(config.PrePaddingSeconds / 60);
$('#txtPostPaddingMinutes', page).val(config.PostPaddingSeconds / 60);
Expand Down Expand Up @@ -39,6 +40,7 @@
config.EnableAutoOrganize = $('#chkOrganize', form).checked();
config.EnableRecordingEncoding = $('#chkConvertRecordings', form).checked();
config.EnableOriginalAudioWithEncodedRecordings = $('#chkPreserveAudio', form).checked();
config.RecordedVideoCodec = $('#chkPreserveVideo', form).checked() ? 'copy' : null;

var recordingPath = form.querySelector('#txtRecordingPath').value || null;
var movieRecordingPath = form.querySelector('#txtMovieRecordingPath').value || null;
Expand Down

0 comments on commit 902b96f

Please sign in to comment.