fix js for repeating events

This commit is contained in:
Georg Ehrke 2012-01-05 20:54:44 +01:00
parent be9ca44d07
commit 486694c2ec
1 changed files with 4 additions and 1 deletions

View File

@ -279,9 +279,9 @@ Calendar={
minWidth:'auto'
});
Calendar.UI.repeat('end');
Calendar.UI.repeat('repeat');
Calendar.UI.repeat('month');
Calendar.UI.repeat('year');
Calendar.UI.repeat('repeat');
}
if(task == 'end'){
$('#byoccurrences').css('display', 'none');
@ -304,12 +304,14 @@ Calendar={
$('#advanced_bymonthday').css('display', 'none');
if($('#repeat option:selected').val() == 'monthly'){
$('#advanced_month').css('display', 'block');
Calendar.UI.repeat('month');
}
if($('#repeat option:selected').val() == 'weekly'){
$('#advanced_weekday').css('display', 'block');
}
if($('#repeat option:selected').val() == 'yearly'){
$('#advanced_year').css('display', 'block');
Calendar.UI.repeat('year');
}
if($('#repeat option:selected').val() == 'doesnotrepeat'){
$('#advanced_options_repeating').slideUp('slow');
@ -341,6 +343,7 @@ Calendar={
$('#advanced_weekday').css('display', 'block');
}
}
},
Calendar:{
overview:function(){