forked from CGM_Public/pretix_original
Fixed error in JavaScript voucher code generation
This commit is contained in:
@@ -98,7 +98,7 @@ $(function () {
|
|||||||
num = $("#voucher-bulk-codes-num").val();
|
num = $("#voucher-bulk-codes-num").val();
|
||||||
$("#id_codes").html("Generating...");
|
$("#id_codes").html("Generating...");
|
||||||
$.getJSON(url + '?num=' + num, function (data) {
|
$.getJSON(url + '?num=' + num, function (data) {
|
||||||
$("#id_codes").text(data.codes.join("\n"));
|
$("#id_codes").val(data.codes.join("\n"));
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user