xref: /webtrees/resources/views/modules/charts/chart.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
17c2c99faSGreg Roach<?php
27c2c99faSGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
57c2c99faSGreg Roach/**
67c2c99faSGreg Roach * @var int $block_id
77c2c99faSGreg Roach * @var string $chart_url
87c2c99faSGreg Roach */
97c2c99faSGreg Roach
107c2c99faSGreg Roach?>
11dd6b2bfcSGreg Roach<div id="chart-block-<?= e($block_id) ?>"></div>
12dd6b2bfcSGreg Roach
13dd6b2bfcSGreg Roach<script>
14728c8c27SGreg Roach    $(<?= json_encode('#chart-block-' . $block_id, JSON_THROW_ON_ERROR) ?>).load(<?= json_encode($chart_url, JSON_THROW_ON_ERROR) ?>);
15dd6b2bfcSGreg Roach</script>
16