Hide RSVP-mode menu when moving/resizing event dialog
This commit is contained in:
parent
6a5a814834
commit
7fd2eb873d
2 changed files with 7 additions and 3 deletions
|
@ -604,13 +604,16 @@ function rcube_calendar_ui(settings)
|
|||
},
|
||||
close: function() {
|
||||
$dialog.dialog('destroy').attr('aria-hidden', 'true').hide();
|
||||
rcmail.command('menu-close','eventoptionsmenu')
|
||||
rcmail.command('menu-close','eventoptionsmenu');
|
||||
$('.libcal-rsvp-replymode').hide();
|
||||
},
|
||||
dragStart: function() {
|
||||
rcmail.command('menu-close','eventoptionsmenu')
|
||||
rcmail.command('menu-close','eventoptionsmenu');
|
||||
$('.libcal-rsvp-replymode').hide();
|
||||
},
|
||||
resizeStart: function() {
|
||||
rcmail.command('menu-close','eventoptionsmenu')
|
||||
rcmail.command('menu-close','eventoptionsmenu');
|
||||
$('.libcal-rsvp-replymode').hide();
|
||||
},
|
||||
buttons: buttons,
|
||||
minWidth: 320,
|
||||
|
|
|
@ -967,6 +967,7 @@ rcube_libcalendaring.itip_rsvp_recurring = function(btn, callback)
|
|||
|
||||
$.each(['all','current','future'], function(i, mode) {
|
||||
$('<li><a>' + rcmail.get_label('rsvpmode'+mode, 'libcalendaring') + '</a>')
|
||||
.addClass('ui-menu-item')
|
||||
.attr('rel', mode)
|
||||
.appendTo(mnu);
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue