v1.5.0 프록시 설정 추가

프록시 설정 추가
API에 archive 추가
status API의 시간 형식 변경 (ISO 8601)
This commit is contained in:
joyfuI
2020-05-31 16:47:49 +09:00
parent 2801de603a
commit 23c1521588
8 changed files with 57 additions and 39 deletions

View File

@@ -41,7 +41,7 @@
<script>
"use strict";
var package_name = '{{ arg["package_name"] }}';
const package_name = '{{ arg["package_name"] }}';
$(function () {
// 프리셋 변경
@@ -64,7 +64,7 @@
// 다운로드
$('#download_start').click(function () {
var url = $('#url').val();
let url = $('#url').val();
if (url.startsWith('http') === false) {
$.notify('<strong>URL을 입력하세요.</strong>', {
type: 'warning'
@@ -82,7 +82,7 @@
postprocessor: $('#postprocessor').val()
},
dataType: 'json',
success: function (data) {
success: function () {
$.notify('<strong>분석중..</strong>', {
type: 'info'
});