r3-v2/dist/index.html

24 lines
550 B
HTML
Raw Normal View History

2020-02-27 15:24:35 +01:00
<!doctype html>
<html>
<head>
<title>Getting Started</title>
</head>
<body>
2020-02-27 17:07:46 +01:00
<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>
2021-07-05 10:21:36 +02:00
<script src="r3.js"></script>
2020-02-27 15:24:35 +01:00
</body>
</html>