9 lines
222 B
JavaScript
9 lines
222 B
JavaScript
|
|
$(document).ready(function() {
|
|
mediumZoom('[data-zoomable]', {
|
|
margin: 100,
|
|
background: getComputedStyle(document.documentElement)
|
|
.getPropertyValue('--global-bg-color') + 'ee',
|
|
})
|
|
});
|