From 63ad0a747a097c5ff58c1acfc2e7941b5ad511df Mon Sep 17 00:00:00 2001 From: AbdullahAbraham <38958413+AbdullahAbraham@users.noreply.github.com> Date: Tue, 31 Jul 2018 21:07:40 -0300 Subject: [PATCH 01/64] Minor formatting proposals --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a0c45087..50189327 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ flowchart.js is on [CDNJS](https://cdnjs.com/libraries/flowchart), feel free to ## Usage -On your page you need to include raphael like so: +On your page you need to include Raphaƫl like so: ```html @@ -93,7 +93,7 @@ and then ``` ## Advice -Symbols that should possibly not be used in the text: '=>' and '->' and ':>' and '|' and '@>' +Symbols that should possibly not be used in the text: `=>` and `->` and `:>` and `|` and `@>` If you want to emphasize a specific path in your flowchart, you can additionally define it like this: From 5156d9a0fd86a86afb56b96b93bde8c721891abe Mon Sep 17 00:00:00 2001 From: Andrea Q <49754813+ndrqu@users.noreply.github.com> Date: Mon, 27 May 2019 12:54:30 +0200 Subject: [PATCH 02/64] Added onclick function binding to chart nodes (#172) * Added onclick binding * Add pointer cursor and function parameters * Upddated README and build production js * fixed chart sample code * Updated readme and examples * Readme closing bracket fix * Fixed closing bracket * Removed nodemon dependency --- README.md | 9 +- example/index.html | 7 +- example/test.txt | 2 +- index.html | 39 +- package.json | 5 +- release/flowchart.js | 1159 +------------------------------------- release/flowchart.js.map | 2 +- src/flowchart.parse.js | 11 +- src/flowchart.symbol.js | 18 + webpack.config.js | 8 +- 10 files changed, 74 insertions(+), 1186 deletions(-) diff --git a/README.md b/README.md index 50189327..336a2b65 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ and then ``` diff --git a/example/index.html b/example/index.html index 0a75706c..26c90e49 100644 --- a/example/index.html +++ b/example/index.html @@ -71,13 +71,18 @@ })(); }; + + function myFunction(event, node) { + console.log("You just clicked this node:", node); + } +