From 5cb04828d2f5974391a524feeb4a159a73ed15ba Mon Sep 17 00:00:00 2001 From: Matthieu MOREL Date: Sun, 6 Dec 2020 21:33:53 +0100 Subject: [PATCH] missing brackets for callback functions in documentation --- docs/flowchart.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/flowchart.md b/docs/flowchart.md index a09a4180d..d7ac4ed12 100644 --- a/docs/flowchart.md +++ b/docs/flowchart.md @@ -594,7 +594,7 @@ flowchart TB It is possible to bind a click event to a node, the click can lead to either a javascript callback or to a link which will be opened in a new browser tab. **Note**: This functionality is disabled when using `securityLevel='strict'` and enabled when using `securityLevel='loose'`. ``` -click nodeId call callback +click nodeId call callback() ``` * nodeId is the id of the node @@ -613,7 +613,7 @@ Examples of tooltip usage below: ``` graph LR; A-->B; - click A call callback "Tooltip for a callback" + click A call callback() "Tooltip for a callback" click B href "http://www.github.com" "This is a tooltip for a link" ``` @@ -622,7 +622,7 @@ The tooltip text is surrounded in double quotes. The styles of the tooltip are s ```mermaid graph LR A-->B; - click A call callback "Tooltip" + click A call callback() "Tooltip" click B href "http://www.github.com" "This is a link" ``` > **Success** The tooltip functionality and the ability to link to urls are available from version 0.5.2. @@ -652,7 +652,7 @@ Beginners tip, a full example using interactive links in a html context:
graph LR; A-->B; - click A call callback "Tooltip" + click A call callback() "Tooltip" click B href "http://www.github.com" "This is a link"