Fix select focus / option selection bug #409
This commit is contained in:
parent
3726c8833c
commit
2d0018be3e
2 changed files with 3 additions and 2 deletions
|
@ -2421,6 +2421,7 @@ function rcube_calendar_ui(settings)
|
|||
$('#recurrence-form-'+freq+', #recurrence-form-until').show();
|
||||
});
|
||||
$('#edit-recurrence-enddate').datepicker(datepicker_settings).click(function(){ $("#edit-recurrence-repeat-until").prop('checked', true) });
|
||||
$('#edit-recurrence-repeat-times').change(function(e){ $('#edit-recurrence-repeat-count').prop('checked', true); });
|
||||
|
||||
// init attendees autocompletion
|
||||
var ac_props;
|
||||
|
|
|
@ -459,11 +459,11 @@ class calendar_ui
|
|||
$this->cal->gettext('forever')));
|
||||
|
||||
$table->add('label', '');
|
||||
$table->add(null, html::label(null, $radio->show('', array('value' => 'count', 'id' => 'edit-recurrence-repeat-count')) . ' ' .
|
||||
$table->add(null, $radio->show('', array('value' => 'count', 'id' => 'edit-recurrence-repeat-count')) . ' ' .
|
||||
$this->cal->gettext(array(
|
||||
'name' => 'forntimes',
|
||||
'vars' => array('nr' => $select->show(1)))
|
||||
)));
|
||||
));
|
||||
|
||||
$table->add('label', '');
|
||||
$table->add(null, $radio->show('', array('value' => 'until', 'id' => 'edit-recurrence-repeat-until')) . ' ' .
|
||||
|
|
Loading…
Add table
Reference in a new issue