Skip to content

Commit b07df65

Browse files
committed
fix: hideLinkController missing in lite version
1 parent e48fdcd commit b07df65

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/mouse.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ export default function(mind) {
1818
// skip circle
1919
} else {
2020
mind.unselectNode()
21-
mind.hideLinkController()
21+
// lite version don't have hideLinkController
22+
mind.hideLinkController && mind.hideLinkController()
2223
}
2324
})
2425

0 commit comments

Comments
 (0)