CC-2155: Can open the rebroadcast options without the

"Record" checkbox being selected

-fixed
This commit is contained in:
martin 2011-05-19 17:16:41 -04:00
parent d2e3129613
commit fc51a6c835
1 changed files with 6 additions and 0 deletions

View File

@ -100,6 +100,12 @@ function setAddShowEvents() {
form.find("#add_show_record").click(function(){
$(this).blur();
form.find("#add_show_rebroadcast").toggle();
//uncheck rebroadcast checkbox
form.find("#add_show_rebroadcast").attr('checked', false);
//hide rebroadcast options
form.find("#schedule-record-rebroadcast > fieldset:not(:first-child)").hide();
});
form.find("#add_show_rebroadcast").click(function(){