Mercurial > code > home > repos > light9
view light9/effecteval/index.html @ 1179:65405b3311f6
dead code
Ignore-this: 19fc9344a2ffe34598ccccd5738bd1a6
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Sun, 15 Jun 2014 07:42:51 +0000 |
parents | 487f0877b7c6 |
children | 95dfce5c12ce |
line wrap: on
line source
<!doctype html> <html> <head> <title>effecteval</title> <meta charset="utf-8" /> <link rel="stylesheet" href="static/style.css"> </head> <body> <div><a href="stats">/stats</a></div> <h1>Effect instances</h1> <div><a href=".">View all songs</a></div> <!-- subscribe to a query of all effects and their songs --> <ul data-bind="foreach: songs"> <li> <a class="song" data-bind="attr: {href: uri}, click: $root.focusSong">Song <span data-bind="text: label"></span></a> <ul> <!-- ko foreach: effects --> <li> <a class="effect" data-bind="attr: {href: 'effect?'+jQuery.param({uri: uri})}, text: label"></a> <button data-bind="click: deleteEffect">Delete</button> </li> <!-- /ko --> <li class="dropTarget" data-bind="event: {dragover: $root.dragover, dragenter: $root.dragover, drop: function(data, event) { $root.drop(uri, event); }}">Add another (drop a sub or effect class)</li> </ul> </li> </ul> <script src="static/jquery-2.1.1.min.js"></script> <script src="static/knockout-3.1.0.js"></script> <script src="static/websocket.js"></script> <script src="index.js"></script> </body> </html>