[Editor] Add a button to trigger a dialog for adding an alt text (bug 1844952)

This commit is contained in:
Calixte Denizet 2023-09-15 16:32:16 +02:00
parent 3afb717eed
commit a216836fd5
11 changed files with 304 additions and 26 deletions

View file

@ -741,6 +741,14 @@ class AnnotationEditorUIManager {
);
}
get direction() {
return shadow(
this,
"direction",
getComputedStyle(this.#container).direction
);
}
onPageChanging({ pageNumber }) {
this.#currentPageIndex = pageNumber - 1;
}