Skip to content

Commit

Permalink
Preparing to publish 3.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkfranz committed Jun 26, 2018
1 parent d879706 commit 2fd4aa6
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions dist/cytoscape.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -21427,7 +21427,7 @@ BRp.getControlPoints = function (edge) {
var rs = edge[0]._private.rscratch;
var type = rs.edgeType;

if (type === 'bezier' || type === 'multibezier') {
if (type === 'bezier' || type === 'multibezier' || type === 'self' || type === 'compound') {
return getPts(rs.ctrlpts);
}
};
Expand Down Expand Up @@ -29090,7 +29090,7 @@ module.exports = Stylesheet;
"use strict";


module.exports = "3.2.13";
module.exports = "3.2.14";

/***/ })
/******/ ]);
Expand Down
4 changes: 2 additions & 2 deletions dist/cytoscape.js
Original file line number Diff line number Diff line change
Expand Up @@ -22189,7 +22189,7 @@ BRp.getControlPoints = function (edge) {
var rs = edge[0]._private.rscratch;
var type = rs.edgeType;

if (type === 'bezier' || type === 'multibezier') {
if (type === 'bezier' || type === 'multibezier' || type === 'self' || type === 'compound') {
return getPts(rs.ctrlpts);
}
};
Expand Down Expand Up @@ -29852,7 +29852,7 @@ module.exports = Stylesheet;
"use strict";


module.exports = "3.2.13";
module.exports = "3.2.14";

/***/ })
/******/ ]);
Expand Down
2 changes: 1 addition & 1 deletion dist/cytoscape.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion documentation/docmaker.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.2.13",
"version": "3.2.14",

"fnArgLinks": {
"selector": "#selectors",
Expand Down
4 changes: 2 additions & 2 deletions documentation/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion documentation/js/cytoscape.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cytoscape",
"version": "3.2.13",
"version": "3.2.14",
"license": "MIT",
"description": "Graph theory (a.k.a. network) library for analysis and visualisation",
"homepage": "http://js.cytoscape.org",
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = "3.2.13";
module.exports = "3.2.14";

0 comments on commit 2fd4aa6

Please sign in to comment.