30.01.2025, 12:58
(30.01.2025, 07:40)admin Wrote: This can't be fully fixed without some firmware modifications.
Partial work-around is to scroll the content so the widget is fully visible:
Code:$(function() {
$('.layer-widget').on('widget-show', function() {
this.scrollIntoView({ block: 'nearest' })
})
})
Thank you!