elm-sortable-table/examples/index.html

21 lines
315 B
HTML
Raw Normal View History

2016-07-21 19:08:10 +00:00
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Sortable Tables</title>
<script type="text/javascript" src="elm.js"></script>
</head>
<body>
2018-12-09 21:29:34 +00:00
<div id="elm-mount"></div>
<script type="text/javascript">
Elm.Main.init({
node: document.getElementById('elm-mount')
});
</script>
2016-07-21 19:08:10 +00:00
</body>
2018-12-09 21:29:34 +00:00
</html>