Hotfix: ShortenLink & feedbackForm JS
This commit is contained in:
parent
06d0d9c136
commit
b93971f90f
@ -1,16 +1,16 @@
|
|||||||
$(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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -14,6 +14,7 @@ $(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();
|
||||||
@ -25,4 +26,3 @@ $(function () {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
|
Reference in New Issue
Block a user