You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is no posibility to position dd by bottom, but if modify code like below, it works
const ignoredStyleAttrs = [
'top',
'left',
'right',
'width',
'height',
'bottom'
]
and add
if (positions.style.bottom !== undefined) {
changes.bottom = ${positions.style.bottom}px
}
in applyReposition
The text was updated successfully, but these errors were encountered:
There is no posibility to position dd by bottom, but if modify code like below, it works
const ignoredStyleAttrs = [
'top',
'left',
'right',
'width',
'height',
'bottom'
]
and add
if (positions.style.bottom !== undefined) {
changes.bottom =
${positions.style.bottom}px
}
in applyReposition
The text was updated successfully, but these errors were encountered: