Skip to content

Commit

Permalink
remove debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
elisherer committed Jan 30, 2018
1 parent 29acf30 commit 6c66230
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/extensions/renderer/canvas/drawing-redraw.js
Expand Up @@ -68,7 +68,6 @@ const createGradientStyle = function (context, colorStyle) {
else {
if (ele.isEdge()) {
let start = ele.sourceEndpoint(), end = ele.targetEndpoint();
ele.data('faveColor') === '#F5A45D' && console.log('edge' , start.x.toFixed(2), start.y.toFixed(2), end.x.toFixed(2), end.y.toFixed(2));
gradientStyle = context.createLinearGradient(start.x, start.y, end.x, end.y);
} else {
let pos = colorStyle.usePaths ? {x: 0, y: 0 } : ele.position(),
Expand Down

0 comments on commit 6c66230

Please sign in to comment.