Add tab options to layout designer

This commit is contained in:
Brian Miyaji
2016-08-20 23:08:41 +10:00
parent ac0f742bea
commit 7f97fc9ba0
10 changed files with 195 additions and 19 deletions

View File

@@ -315,7 +315,8 @@ jQuery(document).ready(function($){
// Sortable lists
$( ".sp-sortable-list" ).sortable({
handle: ".sp-item-handle",
placeholder: "sp-item-placeholder"
placeholder: "sp-item-placeholder",
connectWith: ".sp-connected-list"
});
// Autosave

View File

@@ -79,4 +79,12 @@ function sp_viewport() {
/* Scrollable Tables */
$(".sp-scrollable-table").wrap("<div class=\"sp-scrollable-table-wrapper\"></div>");
/* Template tabs */
$(".sp-tab-menu-item a").click(function() {
$template = $(this).data("sp-tab");
$(this).closest(".sp-tab-menu-item").addClass("sp-tab-menu-item-active").siblings(".sp-tab-menu-item").removeClass("sp-tab-menu-item-active");
$(this).closest(".sp-tab-group").find(".sp-tab-content-"+$template).show().siblings(".sp-tab-content").hide();
return false;
});
})(jQuery);