Convert richtext edit/preview buttons into tabs
This commit is contained in:
parent
2ba7eab67d
commit
ef5352332e
2 changed files with 12 additions and 9 deletions
|
@ -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");
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,5 +1,13 @@
|
|||
<div id="<%= id %>_container" class="row richtext_container">
|
||||
<div id="<%= id %>_content" class="col-sm-8 mb-3 mb-sm-0 richtext_content">
|
||||
<ul class="nav nav-tabs mb-3" role="tablist">
|
||||
<li class="nav-item">
|
||||
<button type="button" class="nav-link active richtext_doedit"><%= t(".edit") %></button>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<button type="button" class="nav-link richtext_dopreview"><%= t(".preview") %></button>
|
||||
</li>
|
||||
</ul>
|
||||
<%= builder.text_area(attribute, options.merge(:wrapper => false, "data-preview-url" => preview_url(:type => type))) %>
|
||||
<div id="<%= id %>_preview" class="richtext_preview richtext text-break"></div>
|
||||
</div>
|
||||
|
@ -7,8 +15,6 @@
|
|||
<div class="card bg-body-tertiary h-100">
|
||||
<div class="card-body">
|
||||
<%= render :partial => "shared/#{type}_help" %>
|
||||
<%= button_tag t(".edit"), :type => "button", :id => "#{id}_doedit", :class => "richtext_doedit btn btn-primary", :disabled => true %>
|
||||
<%= button_tag t(".preview"), :type => "button", :id => "#{id}_dopreview", :class => "richtext_dopreview btn btn-primary" %>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue