목록 메뉴에 전체 중지 버튼 추가
This commit is contained in:
@@ -37,7 +37,7 @@
|
||||
{{ macros.setting_select('preset', '동영상 포맷 프리셋', arg['preset_list'], col='3') }}
|
||||
{{ macros.setting_input_text('format', '동영상 포맷', desc=['포맷 지정은 https://github.com/ytdl-org/youtube-dl/blob/master/README.md#format-selection 참고', '빈칸으로 두면 최고 화질로 다운로드합니다.']) }}
|
||||
{{ setting_select2('postprocessor', '후처리', arg['postprocessor_list'], col='3', desc='다운로드 후 FFmpeg로 후처리합니다.') }}
|
||||
{{ macros.setting_button([['download_start', '다운로드']]) }}
|
||||
{{ macros.setting_button([['download_btn', '다운로드']]) }}
|
||||
</div>
|
||||
|
||||
<script>
|
||||
@@ -64,7 +64,7 @@
|
||||
});
|
||||
|
||||
// 다운로드
|
||||
$('#download_start').click(function () {
|
||||
$('#download_btn').click(function () {
|
||||
let url = $('#url').val();
|
||||
if (url.startsWith('http') === false) {
|
||||
$.notify('<strong>URL을 입력하세요.</strong>', {
|
||||
|
||||
@@ -21,6 +21,11 @@
|
||||
}
|
||||
</style>
|
||||
|
||||
{{ macros.m_row_start() }}
|
||||
{{ macros.m_button('all_stop_btn', '전체 중지') }}
|
||||
{{ macros.m_row_end() }}
|
||||
<div class="d-inline-block"></div>
|
||||
|
||||
<table id="result_table" class="table table-sm tableRowHover">
|
||||
<thead>
|
||||
<tr>
|
||||
@@ -67,6 +72,21 @@
|
||||
$('#list').html(str);
|
||||
});
|
||||
|
||||
// 전체 중지
|
||||
$('#all_stop_btn').click(function () {
|
||||
$.ajax({
|
||||
url: `/${package_name}/ajax/all_stop`,
|
||||
type: 'POST',
|
||||
cache: false,
|
||||
data: {},
|
||||
dataType: 'json'
|
||||
}).done(function () {
|
||||
location.reload();
|
||||
});
|
||||
return false;
|
||||
});
|
||||
|
||||
// 중지
|
||||
$('#list').on('click', '.youtube-dl_stop', function () {
|
||||
let index = $(this).data('index');
|
||||
$.ajax({
|
||||
|
||||
Reference in New Issue
Block a user