aboutsummaryrefslogtreecommitdiff
path: root/app/js/directives.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/js/directives.js')
-rw-r--r--app/js/directives.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/js/directives.js b/app/js/directives.js
index a367920..2895592 100644
--- a/app/js/directives.js
+++ b/app/js/directives.js
@@ -70,7 +70,7 @@ app.directive('pgLine', function () {
for (var i = 0; i < newPoints.length - 1; ++i) {
if (newPoints[i].selected) {
var line = paper.Path.Line(newPoints[i], newPoints[i+1]);
- line.strokeColor = 'red';
+ line.strokeColor = 'rgba(7,140,255,.6)';
line.strokeWidth = 2;
}
}