aboutsummaryrefslogblamecommitdiff
path: root/app/index.html
blob: bfbc92eeb0fbece2cc61f1b725342701d1659485 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
               




                                                  
                                                                        
                                              

                                                  
                                               

                                                       
 
    
                                                 

                                                                                                                                                                                         


                                                                                                                                     




                                                  
 
 
                                
           
       
<!doctype html>
<html lang="en">
    <head>
        <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>
    </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>-->

        <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}}
            </li>
        </ul>


        <p>Nothing here {{}}</p>
    </body>
</html>