aboutsummaryrefslogtreecommitdiff
path: root/app/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'app/index.html')
-rw-r--r--app/index.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/app/index.html b/app/index.html
index 6bf7fc0..bfbc92e 100644
--- a/app/index.html
+++ b/app/index.html
@@ -4,18 +4,21 @@
<meta charset="utf-8">
<title>My HTML File</title>
<link rel="stylesheet" href="css/app.css">
+ <script type="text/javascript" src="lib/paper-full.js"></script>
<script src="lib/angular.js"></script>
<script src="js/app.js" ></script>
<script src="js/controllers.js" ></script>
<script src="js/services.js" ></script>
- <script src="js/filters.js" ></script>
</head>
<body ng-app="playGraph" ng-controller="pointCtrl">
+<!--
<svg id="world" width="500" height="500">
<circle data-ng-repeat="point in points" cx="{{point.x}}" cy="{{point.y}}" r="10" stroke="gray" stroke-width="2" fill="{{getColor(point)}}"></circle>
<line data-ng-repeat="tuple in line | sliding2" x1="{{tuple[0].x}}" y1="{{tuple[0].y}}" x2="{{tuple[1].x}}" y2="{{tuple[1].y}}" style="stroke:rgb(255,0,0);stroke-width:2" />
- </svg>
+ </svg>-->
+
+ <canvas id="canvas" resize ng-mousedown="mouseDown($event)" ng-mousemove="mouseDrag($event)" ng-mouseup="mouseUp()"></canvas>
<ul>
<li data-ng-repeat="song in playlist">
{{song}}