summaryrefslogtreecommitdiff
path: root/docs/_static/collapsible_container.js
blob: 75042d6808a2f7be1c1088f026e75f9f8657603c (plain)
1
2
3
4
5
6
7
8
9
10
// Taken from: https://github.com/plone/training/blob/master/_templates/page.html

$(document).ready(function() {
    $(".toggle > *").hide();
    $(".toggle .admonition-title").show();
    $(".toggle .admonition-title").click(function() {
        $(this).parent().children().not(".admonition-title").toggle(400);
        $(this).parent().children(".admonition-title").toggleClass("open");
    })
});