aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/static/js/wiki/modal.js
blob: 0125257505408ae208eccbbb41cd6fc26e2a48b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
function open_modal(id) {
    let element = document.getElementById(id);

    $(element).addClass("is-active");

    $(element).find(".modal-background").click(function() {
        $(element).removeClass("is-active");
    });

    $(element).find("[aria-label=\"close\"]").click(function() {
        $(element).removeClass("is-active");
    });
}