17 lines
547 B
JavaScript
17 lines
547 B
JavaScript
jQuery(document).ready(function($){
|
|
|
|
// Orderby affects order select in widget options
|
|
$("body").on("change", ".sp-select-orderby", function() {
|
|
$(this).closest(".widget-content").find(".sp-select-order").prop("disabled", $(this).val() == "default");
|
|
});
|
|
|
|
// Calendar affects view all link checkbox in widget options
|
|
$("body").on("change", ".sp-event-calendar-select", function() {
|
|
$el = $(this).closest(".widget-content").find(".sp-event-calendar-show-all-toggle");
|
|
if($(this).val() == 0)
|
|
$el.hide();
|
|
else
|
|
$el.show();
|
|
});
|
|
|
|
}); |