[fix] Hide results after uploading
This commit is contained in:
parent
f6d2330379
commit
695210f134
|
|
@ -149,6 +149,7 @@ $( document ).ready( () => {
|
|||
$("#btnSubmit").click((event) => {
|
||||
// stop submit the form, we will post it manually.
|
||||
event.preventDefault();
|
||||
// Hide submit
|
||||
$('#ulysses16_submit').hide();
|
||||
$('#att48_submit').hide();
|
||||
$('#st70_submit').hide();
|
||||
|
|
@ -157,6 +158,13 @@ $( document ).ready( () => {
|
|||
$('#dsj1000_submit').hide();
|
||||
$("#submit_name").val('');
|
||||
$("#submit_desc").val('');
|
||||
// Hide Download
|
||||
$('#ulysses16_download').hide();
|
||||
$('#att48_download').hide();
|
||||
$('#st70_download').hide();
|
||||
$('#a280_download').hide();
|
||||
$('#pcb442_download').hide();
|
||||
$('#dsj1000_download').hide();
|
||||
doAjax();
|
||||
});
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in New Issue