re-frame/examples/todomvc/todomvc.html

20 lines
434 B
HTML
Raw Normal View History

2015-02-26 01:51:59 +00:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
2015-03-01 20:56:47 +00:00
<title>Reframe Todomvc</title>
2015-02-26 01:51:59 +00:00
<link rel="stylesheet" href="todos.css">
</head>
<body>
<div id="app">
</div>
<script src="target/client.js"></script>
<script>
2015-03-01 20:56:47 +00:00
window.onload = function () {
// Notice that "-" gets turned into "_" when in javscript-land
todomvc.dev.start();
}
2015-02-26 01:51:59 +00:00
</script>
</body>
</html>