mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
affiche uniquement les options nécessaire pour les date
This commit is contained in:
parent
2c9d5fa912
commit
18d649dab9
@ -25,8 +25,7 @@
|
|||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<p>Je <select><option>veux</option><option>ne veux pas</option></select> ajouter des horaires
|
<p>Je <select id="ajouterDesHoraires"><option>ne veux pas</option><option>veux</option></select> ajouter des horaires<span id="identiquesDifferentsPourChaqueJour" style="display:none"> <select><option>identiques</option><option>différents</option></select> pour chaque jour</span>.</p>
|
||||||
<select><option>identiques</option><option>différents</option></select> pour chaque jour.</p>
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
|
@ -116,6 +116,19 @@ if($('#validation-pool-title') && localStorage["title"]) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if($('#ajouterDesHoraires')) {
|
||||||
|
ajouterDesHoraires.addEventListener('change', () => {
|
||||||
|
if (ajouterDesHoraires.value == 'veux') {
|
||||||
|
console.log("je veux")
|
||||||
|
identiquesDifferentsPourChaqueJour.style.display = 'inline'
|
||||||
|
} else {
|
||||||
|
console.log("je ne veux pas")
|
||||||
|
identiquesDifferentsPourChaqueJour.style.display = 'none'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
const addDeleteParentEvent = () => {
|
const addDeleteParentEvent = () => {
|
||||||
$$(".remove").forEach((element) => {
|
$$(".remove").forEach((element) => {
|
||||||
element.addEventListener('click', () => {
|
element.addEventListener('click', () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user