1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-22 09:54:24 +04:00
Files
tabler/pages/_includes/js/maps.html
2019-03-12 22:09:23 +01:00

20 lines
673 B
HTML

<script>
$(document).ready(function () {
$(`#{{ include.id }}`).each(function () {
$(this).vectorMap(
{
map: `{{ include.data[1].map }}`,
backgroundColor: `{{ include.data[1].backgroundColor }}`,
borderColor: `{{ include.data[1].borderColor }}`,
borderWidth: `{{ include.data[1].borderWidth }}`,
borderOpacity: `{{ include.data[1].borderOpacity }}`,
color: `{{ include.data[1].color}}`,
enableZoom: `{{ include.data[1].enableZoom}}`,
showTooltip: `{{ include.data[1].showTooltip}}`,
selectedColor: `{{ include.data[1].selectedColor}}`,
hoverColor: `{{ include.data[1].hoverColor}}`
}
);
});
})
</script>