Skip to content

Commit

Permalink
Deploying to gh-pages from @ d597da3 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
zzxming committed Nov 6, 2024
1 parent a95f692 commit 7b48d2e
Show file tree
Hide file tree
Showing 3 changed files with 98 additions and 93 deletions.
174 changes: 86 additions & 88 deletions dev.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dev.js.map

Large diffs are not rendered by default.

15 changes: 11 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-undef */
const Quill = window.Quill;
const TableUp = window.TableUp.default;

Expand Down Expand Up @@ -133,10 +134,16 @@ const quill = [
quill2,
];
window.quill = quill;
// eslint-disable-next-line no-undef
const output = [output1, output2];
// eslint-disable-next-line no-undef
for (const [i, btn] of [btn1, btn2].entries()) {

const output = [
output1,
output2,
];

for (const [i, btn] of [
btn1,
btn2,
].entries()) {
btn.addEventListener('click', () => {
const content = quill[i].getContents();
console.log(content);
Expand Down

0 comments on commit 7b48d2e

Please sign in to comment.