progress on migrating to heex templates and font-icons

This commit is contained in:
Adam Piontek 2022-08-13 07:32:36 -04:00
commit 3eff955672
21793 changed files with 2161968 additions and 16895 deletions
assets_old/node_modules/domready/tests

19
assets_old/node_modules/domready/tests/test.html generated vendored Normal file
View file

@ -0,0 +1,19 @@
<!DOCTYPE HTML>
<html lang="en-us">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>domReady test</title>
<script src="../src/ready.js"></script>
<script type="text/javascript">
domready(function () {
document.getElementById('title').innerHTML = 'domready'
domready(function () {
document.getElementById('title').innerHTML += '✓'
})
})
</script>
</head>
<body>
<h1 id="title"></h1>
</body>
</html>