aboutsummaryrefslogtreecommitdiff
path: root/resources/assets/javascripts/bootstrap/qr_code.js
blob: 3a627f7e2906e2a16e269a555490a814ce173274 (plain)
1
2
3
4
5
6
7
8
9
10
$(document).on('click', 'a[data-qr-code]', function (event) {
    const data = $(this).data();
    STUDIP.QRCode.show(this.href, {
        print: data.qrCodePrint ?? false,
        title: data.qrTitle ?? null,
        description: data.qrCode || null,
    });

    event.preventDefault();
});