aboutsummaryrefslogtreecommitdiff
path: root/app/js
diff options
context:
space:
mode:
Diffstat (limited to 'app/js')
-rw-r--r--app/js/directives.js15
1 files changed, 12 insertions, 3 deletions
diff --git a/app/js/directives.js b/app/js/directives.js
index 3004ebd..57186f3 100644
--- a/app/js/directives.js
+++ b/app/js/directives.js
@@ -4,6 +4,10 @@ app.directive('pgLine', function () {
return {
restrict: 'A',
replace: 'false',
+ scope: {
+ line: '=',
+ points: '@'
+ },
template: '<canvas width=100%; height: 100%></canvas>',
link: function (scope, elems, attrs) {
var canvas = elems[0];
@@ -11,7 +15,7 @@ app.directive('pgLine', function () {
mainTool.activate();
- scope.line = scope.$eval(attrs.pgLine);
+ //scope.line = scope.$eval(attrs.pgLine);
paper.setup(canvas);
@@ -61,15 +65,20 @@ app.directive('pgLine', function () {
scope.$apply();
}
-/*
+
+
+
scope.$watchCollection('points', function(newVal) {
console.log("update");
if (newVal) {
+
+
+
paper.project.clear();
drawPoints(scope.points);
}
}, true);
-*/
+
}
}