summaryrefslogtreecommitdiffstats
path: root/comm/mail/components/unifiedtoolbar/content/items/reply-list-button.mjs
blob: e3ce55e05e1ffacffcd56f6694c4f08635b960db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, you can obtain one at http://mozilla.org/MPL/2.0/. */

import { MailTabButton } from "chrome://messenger/content/unifiedtoolbar/mail-tab-button.mjs";

/**
 * Unified toolbar button for replying to a mailing list..
 */
class ReplyListButton extends MailTabButton {
  observedAboutMessageEvents = ["load", "MsgLoaded"];
}
customElements.define("reply-list-button", ReplyListButton, {
  extends: "button",
});