Convert richtext edit/preview buttons into tabs

This commit is contained in:
Anton Khorev 2024-06-07 17:38:03 +03:00
parent 2ba7eab67d
commit ef5352332e
2 changed files with 12 additions and 9 deletions

View file

@ -14,9 +14,6 @@ $(document).ready(function () {
/* Disable all the edit buttons */
$(".richtext_doedit").prop("disabled", true);
/* Enable the preview buttons */
$(".richtext_dopreview").prop("disabled", false);
/*
* Install a click handler to switch to edit mode when the
* edit button is pressed.
@ -28,8 +25,8 @@ $(document).ready(function () {
preview.hide();
editor.show();
$(this).siblings(".richtext_dopreview").prop("disabled", false);
$(this).prop("disabled", true);
$(this).parents(".richtext_container").find(".richtext_dopreview").prop("disabled", false).removeClass("active");
$(this).prop("disabled", true).addClass("active");
});
/*
@ -56,7 +53,7 @@ $(document).ready(function () {
preview.css("min-height", minHeight + "px");
preview.show();
$(this).siblings(".richtext_doedit").prop("disabled", false);
$(this).prop("disabled", true);
$(this).parents(".richtext_container").find(".richtext_doedit").prop("disabled", false).removeClass("active");
$(this).prop("disabled", true).addClass("active");
});
});