Skip to content

Commit

Permalink
docs & bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkfranz committed Sep 16, 2014
1 parent 714088f commit 85807ea
Show file tree
Hide file tree
Showing 51 changed files with 29,145 additions and 421 deletions.
4 changes: 4 additions & 0 deletions debug/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,10 @@ <h2>View</h2>
<button id="enable-autoungrabify">on</button>
<button id="disable-autoungrabify">off</button><br />

Autounselectify:
<button id="enable-autounselectify">on</button>
<button id="disable-autounselectify">off</button><br />

Selected BB:
<button id="show-bb">show</button>
<button id="hide-bb">hide</button>
Expand Down
8 changes: 8 additions & 0 deletions debug/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@ $(function(){
cy.autoungrabify(false);
});

$("#enable-autounselectify").click(function(){
cy.autounselectify(true);
});

$("#disable-autounselectify").click(function(){
cy.autounselectify(false);
});

$("#show-bb").click(function(){
var eles = cy.$(':selected');

Expand Down
67 changes: 67 additions & 0 deletions documentation/api/cytoscape.js-2.2.14/arbor.js

Large diffs are not rendered by default.

Loading

0 comments on commit 85807ea

Please sign in to comment.