Link hover width fixed

This commit is contained in:
barsdeveloper
2022-03-01 21:43:53 +01:00
parent 979e4bbd10
commit 3fd95a8854
9 changed files with 679 additions and 586 deletions

View File

@@ -175,6 +175,14 @@ export default class LinkElement extends IElement {
this.linkMessageElement = null
}
}
startDragging() {
this.template.applyStartDragging(this)
}
finishDragging() {
this.template.applyFinishDragging(this)
}
}
customElements.define(LinkElement.tagName, LinkElement)