forked from CGM_Public/pretix_original
Properly slice the first 10 characters for QR-secret popover hint
This commit is contained in:
@@ -866,7 +866,7 @@ $(function () {
|
|||||||
height: 196
|
height: 196
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
$div.append($(this).attr("data-qrcode").slice(10) + "…<br>");
|
$div.append($(this).attr("data-qrcode").slice(0, 10) + "…<br>");
|
||||||
$div.append(gettext("Click to close"));
|
$div.append(gettext("Click to close"));
|
||||||
$div.slideDown(200);
|
$div.slideDown(200);
|
||||||
$div.click(function (e) {
|
$div.click(function (e) {
|
||||||
|
|||||||
Reference in New Issue
Block a user