refonte django #3

Merged
nyanloutre merged 15 commits from refonte_django into master 2022-11-02 18:14:29 +01:00
1 changed files with 17 additions and 0 deletions
Showing only changes of commit 7a3369eb28 - Show all commits

View File

@ -154,4 +154,21 @@
</div>
{% include "common_files/contact.html" with responsable="Nathalie ROHRBACH, Directrice" email="ecole@musique-meyenheim.fr" %}
<script type="text/javascript">
$(function () {
$('[data-toggle="popover"]').popover({trigger: "hover"})
})
appear({
elements: function elements(){
// work with all elements with the class "track"
return document.getElementsByClassName('track');
},
appear: function appear(el){
console.log('visible', el);
$(el).popover('show');
},
});
</script>
{% endblock %}