Skip to content

Commit

Permalink
Preparing to publish 3.2.16
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkfranz committed Aug 16, 2018
1 parent 9cd25e0 commit e425b4c
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 11 deletions.
9 changes: 7 additions & 2 deletions dist/cytoscape.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -22023,6 +22023,11 @@ BRp.getLabelText = function (ele, prefix) {
}
};

// for empty text, skip all processing
if (!text) {
return '';
}

if (textTransform == 'none') {
// passthrough
} else if (textTransform == 'uppercase') {
Expand Down Expand Up @@ -27509,7 +27514,7 @@ CRp.drawText = function (context, ele, prefix) {
textX += marginX;
textY += marginY;

var rotation = ele.pstyle('text-rotation');
var rotation = ele.pstyle(pdash + 'text-rotation');
var theta;

if (rotation.strValue === 'autorotate') {
Expand Down Expand Up @@ -29098,7 +29103,7 @@ module.exports = Stylesheet;
"use strict";


module.exports = "3.2.15";
module.exports = "3.2.16";

/***/ })
/******/ ]);
Expand Down
9 changes: 7 additions & 2 deletions dist/cytoscape.js
Original file line number Diff line number Diff line change
Expand Up @@ -22785,6 +22785,11 @@ BRp.getLabelText = function (ele, prefix) {
}
};

// for empty text, skip all processing
if (!text) {
return '';
}

if (textTransform == 'none') {
// passthrough
} else if (textTransform == 'uppercase') {
Expand Down Expand Up @@ -28271,7 +28276,7 @@ CRp.drawText = function (context, ele, prefix) {
textX += marginX;
textY += marginY;

var rotation = ele.pstyle('text-rotation');
var rotation = ele.pstyle(pdash + 'text-rotation');
var theta;

if (rotation.strValue === 'autorotate') {
Expand Down Expand Up @@ -29860,7 +29865,7 @@ module.exports = Stylesheet;
"use strict";


module.exports = "3.2.15";
module.exports = "3.2.16";

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

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

0 comments on commit e425b4c

Please sign in to comment.