From 26eba88cb27802c0a97cdd2a349d691e3d595e01 Mon Sep 17 00:00:00 2001 From: Kevin Grandemange Date: Sun, 7 Jun 2015 23:42:57 +0200 Subject: [PATCH] Change arrow property to make them more visible and fix offset --- shlr/www/enyo/js/disasm.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shlr/www/enyo/js/disasm.js b/shlr/www/enyo/js/disasm.js index e03448fb69..700d5d904b 100644 --- a/shlr/www/enyo/js/disasm.js +++ b/shlr/www/enyo/js/disasm.js @@ -33,7 +33,7 @@ var BBGraph = function () { updateBox: function(event) { // move the html mask when moving the svg rect var bbox = this.model.getBBox(); - this.$box.css({ width: bbox.width + 2, height: bbox.height, left: bbox.x - 1, top: bbox.y + 7}); + this.$box.css({ width: bbox.width + 2, height: bbox.height - 6, left: bbox.x - 1, top: bbox.y + 7}); } }); }; @@ -76,7 +76,7 @@ BBGraph.prototype.makeLink = function(v1, v2, color) { target: { id: String(v2) }, attrs: { '.marker-target': { - d: 'M 4 0 L 0 2 L 4 4 z', + d: 'M 6 0 L 0 3 L 6 6 z', fill: color, stroke: color },