Debug affichage infos questionnaire via id passé par l'url
This commit is contained in:
parent
c7f3c51308
commit
e27a26d022
@ -487,7 +487,7 @@ const showNextQuestionnaires = (token) =>
|
|||||||
document.getElementById("questionnaire_"+response.questionnaires[i].id).addEventListener("click", function(e)
|
document.getElementById("questionnaire_"+response.questionnaires[i].id).addEventListener("click", function(e)
|
||||||
{
|
{
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
showFormQuestionnaireInfos(e.target.id.split("_")[1], user.token);
|
showFormQuestionnaireInfos(e.target.id.split("_")[1], token);
|
||||||
window.location.assign("#questionnaires");
|
window.location.assign("#questionnaires");
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -576,8 +576,6 @@ const initialise = async () =>
|
|||||||
const lastTag=tags[0].trim();
|
const lastTag=tags[0].trim();
|
||||||
if(lastTag.length >= 2)
|
if(lastTag.length >= 2)
|
||||||
{
|
{
|
||||||
// à revoir : importer la liste des tags lors de l'initialisation pour éviter les appels multiples ?
|
|
||||||
// mais dans ce cas actualiser cette liste après chaque mise à jour.
|
|
||||||
const xhrSearchTags = new XMLHttpRequest();
|
const xhrSearchTags = new XMLHttpRequest();
|
||||||
xhrSearchTags.open("POST", apiUrl+configQuestionnaires.questionnaireRoutes+configQuestionnaires.tagsSearchRoute);
|
xhrSearchTags.open("POST", apiUrl+configQuestionnaires.questionnaireRoutes+configQuestionnaires.tagsSearchRoute);
|
||||||
xhrSearchTags.onreadystatechange = function()
|
xhrSearchTags.onreadystatechange = function()
|
||||||
|
Loading…
Reference in New Issue
Block a user