mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-08-21 09:16:41 +02:00
Fixed binding issue
This commit is contained in:
@@ -64,6 +64,10 @@ export class ClassDB implements DiagramDB {
|
|||||||
this.setLink = this.setLink.bind(this);
|
this.setLink = this.setLink.bind(this);
|
||||||
this.bindFunctions = this.bindFunctions.bind(this);
|
this.bindFunctions = this.bindFunctions.bind(this);
|
||||||
this.clear = this.clear.bind(this);
|
this.clear = this.clear.bind(this);
|
||||||
|
|
||||||
|
this.setTooltip = this.setTooltip.bind(this);
|
||||||
|
this.setClickEvent = this.setClickEvent.bind(this);
|
||||||
|
this.setCssStyle = this.setCssStyle.bind(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
private splitClassNameAndType(_id: string) {
|
private splitClassNameAndType(_id: string) {
|
||||||
|
Reference in New Issue
Block a user