mirror of https://gitlab.com/tildes/tildes.git
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.
19 lines
769 B
19 lines
769 B
// Copyright (c) 2018 Tildes contributors <code@tildes.net>
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
$.onmount('[data-js-markdown-preview-tab]', function() {
|
|
$(this).click(function(event) {
|
|
var $editTextarea = $(this).closest('form').find('[name="markdown"]');
|
|
var $previewDiv = $(this).closest('form').find('[data-js-markdown-preview]');
|
|
|
|
$editTextarea.addClass('d-none');
|
|
$previewDiv.removeClass('d-none');
|
|
});
|
|
|
|
$(this).on('after.success.ic success.ic', function(event) {
|
|
// Stop intercooler event from bubbling up past this button. This
|
|
// prevents behaviors on parent elements from mistaking a successful
|
|
// "preview" from a successful "submit".
|
|
event.stopPropagation();
|
|
});
|
|
});
|