[fix] clean dir before build

This commit is contained in:
2021-01-19 00:16:01 +00:00
parent c4081187dc
commit 6e14815639
4 changed files with 107 additions and 2 deletions

View File

@@ -179,10 +179,12 @@ $( document ).ready( () => {
});
// Submit results
$("#btnSubmit").click((event) => {
$("#btnSubmit").click(function(event) {
// stop submit the form, we will post it manually.
event.preventDefault();
socket.emit('option', user_option);
// Hide submit
$('#ulysses16_submit').prop('disabled', true);
$('#att48_submit').prop('disabled', true);