forked from mirrors/bookwyrm
Runs prettier
This commit is contained in:
parent
f50294875f
commit
49ecd86afe
1 changed files with 5 additions and 3 deletions
|
@ -61,7 +61,9 @@ let BookWyrm = new (class {
|
||||||
.querySelectorAll('input[type="file"]')
|
.querySelectorAll('input[type="file"]')
|
||||||
.forEach(bookwyrm.disableIfTooLarge.bind(bookwyrm));
|
.forEach(bookwyrm.disableIfTooLarge.bind(bookwyrm));
|
||||||
document.querySelectorAll("[data-copytext]").forEach(bookwyrm.copyText.bind(bookwyrm));
|
document.querySelectorAll("[data-copytext]").forEach(bookwyrm.copyText.bind(bookwyrm));
|
||||||
document.querySelectorAll(".modal.is-active").forEach(bookwyrm.handleActiveModal.bind(bookwyrm));
|
document
|
||||||
|
.querySelectorAll(".modal.is-active")
|
||||||
|
.forEach(bookwyrm.handleActiveModal.bind(bookwyrm));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -418,7 +420,7 @@ let BookWyrm = new (class {
|
||||||
* for information about using the modal.
|
* for information about using the modal.
|
||||||
*/
|
*/
|
||||||
handleModalButton(event) {
|
handleModalButton(event) {
|
||||||
const { handleFocusTrap } = this
|
const { handleFocusTrap } = this;
|
||||||
const modalButton = event.currentTarget;
|
const modalButton = event.currentTarget;
|
||||||
const targetModalId = modalButton.dataset.modalOpen;
|
const targetModalId = modalButton.dataset.modalOpen;
|
||||||
const htmlElement = document.querySelector("html");
|
const htmlElement = document.querySelector("html");
|
||||||
|
@ -476,7 +478,7 @@ let BookWyrm = new (class {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const { handleFocusTrap } = this
|
const { handleFocusTrap } = this;
|
||||||
|
|
||||||
modalElement.getElementsByClassName("modal-card")[0].focus();
|
modalElement.getElementsByClassName("modal-card")[0].focus();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue