Skip to content

Commit

Permalink
update dist
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 12, 2023
1 parent c99a3b3 commit fdaa4cb
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
5 changes: 4 additions & 1 deletion dist/example/input.html
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,16 @@
</style>
</head>
<body>
<div class="input">input: <input id="input" /></div>
<div class="input">input: <input id="input" /></div>
<div class="textarea">textarea: <textarea id="textarea"></textarea></div>
<div class="contenteditable">
contentable:
<div contenteditable="true" id="contenteditable"></div>
</div>
<script></script>
<script src="./input.js"></script>
</body>
<div id="transmart-crx-shadow-root" style="all: initial"></div>


</html>
6 changes: 6 additions & 0 deletions dist/example/input.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
let start = Date.now();
document.addEventListener("keydown", function (event) {
const diff = Date.now() - start;
start = Date.now();
console.log(`You pressed the ${event.key} key`, diff);
});
4 changes: 2 additions & 2 deletions dist/libs/foliate-js/make.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/libs/subtitle/subtitle.js

Large diffs are not rendered by default.

0 comments on commit fdaa4cb

Please sign in to comment.