add all web jses (leave out the big data and asm files)
This commit is contained in:
parent
e8868b636f
commit
3b05f4316c
68 changed files with 1408 additions and 0 deletions
23
web/test.html
Normal file
23
web/test.html
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<!-- Bootstrap HTML for running the unit tests. -->
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<script>
|
||||
window.logs = [];
|
||||
console.log = function(message) {
|
||||
window.logs.push(message);
|
||||
}
|
||||
console.warn = function(message) {
|
||||
window.logs.push(message);
|
||||
}
|
||||
console.info = function(message) {
|
||||
window.logs.push(message);
|
||||
}
|
||||
console.error = function(message) {
|
||||
window.logs.push(message);
|
||||
}
|
||||
</script>
|
||||
<script src="pyodide_dev.js"></script>
|
||||
</head>
|
||||
<body></body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue