aboutsummaryrefslogtreecommitdiff
path: root/app/js/directives.js
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2014-05-11 13:06:59 +0200
committerJakob Odersky <jodersky@gmail.com>2014-05-11 13:06:59 +0200
commitd56086505cfd3e0549438b8030c5677aab7770c1 (patch)
treea0596dbcdf0c4cb4e4b61abbfea13b28c0bf0065 /app/js/directives.js
parentf840698f6841353c83ed0a9225e741e59df5fb29 (diff)
downloadplayGraph-d56086505cfd3e0549438b8030c5677aab7770c1.tar.gz
playGraph-d56086505cfd3e0549438b8030c5677aab7770c1.tar.bz2
playGraph-d56086505cfd3e0549438b8030c5677aab7770c1.zip
reinstore scope for adding graph edges
Diffstat (limited to 'app/js/directives.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);
-*/
+
}
}