Comments selectable by header only, links fixes

This commit is contained in:
barsdeveloper
2022-12-16 22:36:31 +01:00
parent 69d274e9cf
commit 479db1e987
10 changed files with 121 additions and 31 deletions

View File

@@ -104,19 +104,19 @@ export default class IDraggableElement extends IElement {
}
}
topBoundary() {
return this.locationY
topBoundary(justSelectableArea = false) {
return this.template.topBoundary(justSelectableArea)
}
rightBoundary() {
return this.locationX + this.sizeX
rightBoundary(justSelectableArea = false) {
return this.template.rightBoundary(justSelectableArea)
}
bottomBoundary() {
return this.locationY + this.sizeY
bottomBoundary(justSelectableArea = false) {
return this.template.bottomBoundary(justSelectableArea)
}
leftBoundary() {
return this.locationX
leftBoundary(justSelectableArea = false) {
return this.template.leftBoundary(justSelectableArea)
}
}