r3-legacy/dist/index.html

24 lines
550 B
HTML

<!doctype html>
<html>
<head>
<title>Getting Started</title>
</head>
<body>
<div id="log">
</div>
<script>
(function () {
var logger = document.getElementById('log');
console.log = function (message) {
if (typeof message == 'object') {
logger.innerHTML += (JSON && JSON.stringify ? JSON.stringify(message) : message) + '<br />';
} else {
logger.innerHTML += message + '<br />';
}
}
})();
</script>
<script src="r3.js"></script>
</body>
</html>