Files
metatron/play.html

19 lines
466 B
HTML
Raw Permalink Normal View History

2016-01-24 20:44:30 -08:00
<!DOCTYPE html>
<html>
<head>
<script src="metatron.js" charset="UTF-8"></script>
</head>
<body>
<input id="value" type="text">
<input id="submit" type="button" value="Send">
<script>
window.addEventListener('load', function() {
var gen = new metatron.Generator('test');
document.getElementById('submit').addEventListener('click', function() {
gen.play(document.getElementById('value').value);
});
});
</script>
</body>
</html>