forked from CGM_Public/pretix_original
23 lines
697 B
JavaScript
23 lines
697 B
JavaScript
/*global $,gettext*/
|
|
|
|
$(function () {
|
|
if ($("div[data-lazy-id]").length == 0) {
|
|
return;
|
|
}
|
|
$.getJSON("widgets.json" + ($("select[name='subevent']").val() ? "?subevent=" + $("select[name='subevent']").val() : ""), function (data) {
|
|
$.each(data.widgets, function (k, v) {
|
|
$("[data-lazy-id=" + v.lazy + "]").removeClass("widget-lazy-loading");
|
|
$("[data-lazy-id=" + v.lazy + "] .widget").html(v.content);
|
|
});
|
|
});
|
|
});
|
|
$(function () {
|
|
if ($("#logs_target").length == 0) {
|
|
return;
|
|
}
|
|
$.get("logs/embed", function (data) {
|
|
$("#logs_target").html(data)
|
|
add_log_expand_handlers($("#logs_target"))
|
|
});
|
|
});
|