ovh-angular-jsplumb
Allow to draw links between elements using jsplumb toolkit.
Table of contents
Dependencies
If you are using grunt and grunt wiredep, overrides the jsplumb dependency like this :
...wiredep: overrides : jsplumb: main : 'dist/js/jquery.jsPlumb-1.7.3-min.js' 'jquery-ui' : main : 'ui/minified/core.min.js' 'ui/minified/widget.min.js' 'ui/minified/mouse.min.js' 'ui/minified/draggable.min.js' 'ui/minified/droppable.min.js' ...
For jqueryUI, we only need draggable and droppable functionnalities (and the few core functionnalities). So we can load only these files.
Example
First, make sure jsplumb
is ready by calling jsPlumbService.jsplumbInit
method :
angular;
Create an instance of ovh-angular-jsplumb
with the jsplumbInstance
directive :
...
Installation
Bower
bower install ovh-angular-jsplumb --save
NPM
npm install ovh-angular-jsplumb --save
Get the sources
git clone https://github.com/ovh-ux/ovh-angular-jsplumb.gitcd ovh-angular-jsplumbnpm installbower install
You've developed a new cool feature? Fixed an annoying bug? We'd be happy to hear from you!
Have a look in CONTRIBUTING.md
Run the tests
npm test
Build the documentation
grunt ngdocs
Related links
- Contribute: https://github.com/ovh-ux/ovh-angular-jsplumb/CONTRIBUTING.md
- Report bugs: https://github.com/ovh-ux/ovh-angular-jsplumb/issues
- Get latest version: https://github.com/ovh-ux/ovh-angular-jsplumb
License
See https://github.com/ovh-ux/ovh-angular-jsplumb/blob/master/LICENSE
Then include ovh-angular-jsplumb.js in your HTML with it's dependencies (Note : As mentionned above, you can only load jquery ui dependency files) :
<script src="jquery.js">
<script src="jquery-ui.js">
<script src="jsplumb.js">
<script src="angular.js">
<script src="ovh-angular-jsplumb.js">
And then load the module in your application by adding it as a dependent module:
angular.module('app', ['ovh-angular-jsplumb']);