You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
532 B

  1. // Copyright (c) 2018 Tildes contributors <code@tildes.net>
  2. // SPDX-License-Identifier: AGPL-3.0-or-later
  3. $.onmount("[data-js-markdown-edit-tab]", function() {
  4. $(this).click(function() {
  5. var $editTextarea = $(this)
  6. .closest("form")
  7. .find('[name="markdown"]');
  8. var $previewDiv = $(this)
  9. .closest("form")
  10. .find(".form-markdown-preview");
  11. $editTextarea.removeClass("d-none");
  12. $previewDiv.addClass("d-none");
  13. $previewDiv.empty();
  14. });
  15. });