Bug 1918723 - Remove inline popup handlers from identity-popup. r=Gijs

Differential Revision: https://phabricator.services.mozilla.com/D222283
This commit is contained in:
Tom Schuster 2024-09-18 08:40:42 +00:00
Родитель 83776e7556
Коммит 0cf632180b
2 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -186,6 +186,14 @@ var gIdentityHandler = {
},
_initializePopupListeners() {
let popup = this._identityPopup;
popup.addEventListener("popupshown", event => {
this.onPopupShown(event);
});
popup.addEventListener("popuphidden", event => {
this.onPopupHidden(event);
});
const COMMANDS = {
"identity-popup-security-button": () => {
this.showSecuritySubView();

Просмотреть файл

@ -9,8 +9,6 @@
role="alertdialog"
noautofocus="true"
aria-labelledby="identity-popup-mainView-panel-header-span"
onpopupshown="gIdentityHandler.onPopupShown(event);"
onpopuphidden="gIdentityHandler.onPopupHidden(event);"
orient="vertical">
<panelmultiview id="identity-popup-multiView"