Make snooze drop-down menu stay on the screen
This commit is contained in:
parent
c555e6bc42
commit
d61041e96e
1 changed files with 3 additions and 1 deletions
|
@ -91,8 +91,10 @@ function rcube_calendar(settings)
|
|||
me.dismiss_link = $(this);
|
||||
me.dismiss_alarm(me.dismiss_link.data('id'), 0);
|
||||
});
|
||||
asnooze = $('<a href="#" class="alarm-action-snooze"></a>').html(rcmail.gettext('snooze','calendar')).click(function(){
|
||||
asnooze = $('<a href="#" class="alarm-action-snooze"></a>').html(rcmail.gettext('snooze','calendar')).click(function(e){
|
||||
me.snooze_dropdown($(this));
|
||||
e.stopPropagation();
|
||||
return false;
|
||||
});
|
||||
actions = $('<div>').addClass('alarm-actions').append(adismiss.data('id', alarm.id)).append(asnooze.data('id', alarm.id));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue