Skip to content

Commit

Permalink
Preparing to publish 3.2.15
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkfranz committed Jul 19, 2018
1 parent 230e5d3 commit c83698b
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 13 deletions.
14 changes: 11 additions & 3 deletions dist/cytoscape.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -24293,8 +24293,14 @@ BRp.load = function () {
earlier[j] = now[j];
}
//r.redraw();
}, false);

// the active bg indicator should be removed when making a swipe that is neither for dragging nodes or panning
if (capture && e.touches.length > 0 && !r.hoverData.draggingEles && !r.swipePanning && r.data.bgActivePosistion != null) {
r.data.bgActivePosistion = undefined;
r.redrawHint('select', true);
r.redraw();
}
}, false);
var touchcancelHandler;
r.registerBinding(window, 'touchcancel', touchcancelHandler = function touchcancelHandler(e) {
// eslint-disable-line no-undef
Expand All @@ -24315,7 +24321,9 @@ BRp.load = function () {
var capture = r.touchData.capture;

if (capture) {
r.touchData.capture = false;
if (e.touches.length === 0) {
r.touchData.capture = false;
}

e.preventDefault();
} else {
Expand Down Expand Up @@ -29090,7 +29098,7 @@ module.exports = Stylesheet;
"use strict";


module.exports = "3.2.14";
module.exports = "3.2.15";

/***/ })
/******/ ]);
Expand Down
14 changes: 11 additions & 3 deletions dist/cytoscape.js
Original file line number Diff line number Diff line change
Expand Up @@ -25055,8 +25055,14 @@ BRp.load = function () {
earlier[j] = now[j];
}
//r.redraw();
}, false);

// the active bg indicator should be removed when making a swipe that is neither for dragging nodes or panning
if (capture && e.touches.length > 0 && !r.hoverData.draggingEles && !r.swipePanning && r.data.bgActivePosistion != null) {
r.data.bgActivePosistion = undefined;
r.redrawHint('select', true);
r.redraw();
}
}, false);
var touchcancelHandler;
r.registerBinding(window, 'touchcancel', touchcancelHandler = function touchcancelHandler(e) {
// eslint-disable-line no-undef
Expand All @@ -25077,7 +25083,9 @@ BRp.load = function () {
var capture = r.touchData.capture;

if (capture) {
r.touchData.capture = false;
if (e.touches.length === 0) {
r.touchData.capture = false;
}

e.preventDefault();
} else {
Expand Down Expand Up @@ -29852,7 +29860,7 @@ module.exports = Stylesheet;
"use strict";


module.exports = "3.2.14";
module.exports = "3.2.15";

/***/ })
/******/ ]);
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.14",
"version": "3.2.15",

"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.14",
"version": "3.2.15",
"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.14";
module.exports = "3.2.15";

0 comments on commit c83698b

Please sign in to comment.