We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f9f82f7 + c46776f commit d50f2bdCopy full SHA for d50f2bd
yomitan-dict-builder/static/custom/app.js
@@ -263,6 +263,9 @@ async function renderHistory() {
263
list.appendChild(item);
264
}
265
266
+ list.querySelectorAll(".history-item").forEach(item =>
267
+ item.addEventListener("click", () => histLoad(item.dataset.id))
268
+ );
269
list.querySelectorAll(".btn-hist-load").forEach(btn =>
270
btn.addEventListener("click", e => { e.stopPropagation(); histLoad(btn.dataset.id); })
271
);
0 commit comments