abd3b0f5aeb8dc105399c92a20cb828547e73ac7
2 * Callback appelé lorsque un film est clické.
3 * Affiche ou cache les informations détaillés pour ce film.
5 function detailFilm(id
)
7 var detail
= document
.getElementById(id
)
9 if (detail
.style
.visibility
== "visible")
11 detail
.style
.visibility
= "hidden"
12 detail
.style
.position
= "absolute"
16 detail
.style
.visibility
= "visible"
17 detail
.style
.position
= "relative"