Revision control
Copy as Markdown
Other Tools
<?xml version="1.0"?>
<!-- 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
<!DOCTYPE html>
<html
  type="child"
  scrolling="false"
  style="min-width: 38em"
>
  <head>
    <title data-l10n-id="attachment-reminder-dialog-title"></title>
    <meta
      http-equiv="Content-Security-Policy"
      content="default-src chrome:; script-src chrome: 'unsafe-inline' moz-src:"
    />
    <link rel="localization" href="branding/brand.ftl" />
    <link
      rel="localization"
      href="messenger/preferences/attachment-reminder.ftl"
    />
    <script
      defer="defer"
    ></script>
  </head>
  <html:body
  >
    <dialog id="attachmentReminderOptionsDialog">
      <vbox>
        <label control="keywordList" data-l10n-id="attachment-reminder-label" />
        <hbox>
          <richlistbox
            id="keywordList"
            flex="1"
            ondblclick="gAttachmentReminderOptionsDialog.editKeyword();"
          />
          <vbox>
            <button
              data-l10n-id="keyword-new-button"
              oncommand="gAttachmentReminderOptionsDialog.addKeyword();"
            />
            <button
              data-l10n-id="keyword-edit-button"
              oncommand="gAttachmentReminderOptionsDialog.editKeyword();"
            />
            <button
              data-l10n-id="keyword-remove-button"
              oncommand="gAttachmentReminderOptionsDialog.removeKeyword();"
            />
          </vbox>
        </hbox>
      </vbox>
    </dialog>
  </html:body>
</html>