Skip to content
jquery plugin for flowchart.js.
JavaScript CSS HTML
Find file
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Failed to load latest commit information.
dist
examples
src
.gitignore
.jshintrc
CHANGE.md
Gulpfile.js
LICENSE
README.md
bower.json
package.json

README.md

jquery.flowchart.js

jQuery plugin for flowchart.js.

Example

Demo

Usage

<div class="flowchart">
st=>start: User login
op=>operation: Login operation
cond=>condition: Login successful Yes or No?
e=>end: Into admin panel

st->op->cond
cond(yes)->e
cond(no)->op
</div>

<script src="js/raphael.min.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/flowchart.min.js"></script>
<script src="../src/jquery.flowchart.js"></script>
<script type="text/javascript">
    $(function() {
        $(".flowchart").flowChart();
    });
</script>

Install & download

Bower install:

bower install jquery.flowchart.js

Download:

Thanks

Thanks to flowchart.js's work.

Changes

Change logs

License

The MIT license.

Copyright (c) 2015 Pandao

Something went wrong with that request. Please try again.