Hotfix: ShortenLink & feedbackForm JS

This commit is contained in:
Divlo 2020-01-20 22:01:48 +01:00
parent 06d0d9c136
commit b93971f90f
2 changed files with 22 additions and 22 deletions

View File

@ -1,18 +1,18 @@
$(function () { $(function () {
$('#formLinkShortener').submit((event) => { $('#feedbackForm').submit((e) => {
event.preventDefault(); e.preventDefault();
const postdata = $('#formLinkShortener').serialize(); const postdata = $('#feedbackForm').serialize();
$.ajax({ $.ajax({
type: 'POST', type: 'POST',
url: '../../php/shortenLink.php', url: '../../php/feedbackForm.php',
data: postdata, data: postdata,
success: (text) => { success: (response) => {
try { const result = JSON.parse(response);
$(".results").html(JSON.parse(text).message); $(".results").html(result.message);
} catch (error) { if(result.isSuccess) {
$(".results").html("URL invalide."); $("#feedbackForm")[0].reset();
} }
} }
}); });
}); });
}); });

View File

@ -14,15 +14,15 @@ $(function () {
} }
} }
}); });
});
// Affiche l'input selon le choix de l'utilisateur sur la page linkShortener // Affiche l'input selon le choix de l'utilisateur sur la page linkShortener
$('.hideUserShortcut').hide(); $('.hideUserShortcut').hide();
$("#option").bind("keyup change", () => { $("#option").bind("keyup change", () => {
if ($("#option").val() == "userShortcut") { if ($("#option").val() == "userShortcut") {
$('.hideUserShortcut').show(); $('.hideUserShortcut').show();
} else { } else {
$('.hideUserShortcut').hide(); $('.hideUserShortcut').hide();
} }
}); });
});
}); });