FIX: temporarily disable event listener for dismissing the first notification

This commit is contained in:
Jeff Wong 2020-04-29 14:34:49 -07:00
parent 590830b931
commit 8e4fea897e
1 changed files with 4 additions and 3 deletions

View File

@ -225,9 +225,10 @@ const SiteHeaderComponent = MountWidget.extend(Docking, PanEvents, {
); );
} }
}; };
document.addEventListener("click", this._dismissFirstNotification, { // TODO: re-enable event listener
once: true // document.addEventListener("click", this._dismissFirstNotification, {
}); // once: true
// });
} }
}, },