mirror of
https://github.com/pretix/pretix.git
synced 2026-04-28 00:02:37 +00:00
Properly slice the first 10 characters for QR-secret popover hint
This commit is contained in:
@@ -866,7 +866,7 @@ $(function () {
|
||||
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.slideDown(200);
|
||||
$div.click(function (e) {
|
||||
|
||||
Reference in New Issue
Block a user