added monthly show option, bit more javascript to show/hide info when not needed in add show tabs.

This commit is contained in:
Naomi 2011-02-08 18:22:51 -05:00
parent bdad3b34e0
commit 3d3515812a
8 changed files with 118 additions and 57 deletions

View file

@ -70,6 +70,20 @@ function setAddShowEvents() {
$("#schedule-show-when > fieldset:last").toggle();
});
$("#add_show_repeat_type").change(function(){
var x = $(this).val();
if($(this).val() == 2) {
$("#add_show_day_check-label, #add_show_day_check-element").hide();
}
else {
$("#add_show_day_check-label, #add_show_day_check-element").show();
}
});
$("#add_show_no_end").click(function(){
$("#add_show_end_date").toggle();
});
start = $("#add_show_start_date");
end = $("#add_show_end_date");