mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Fix notifications navigator jumps out sometimes on navigation
This commit is contained in:
parent
5de5c09207
commit
db84ba5240
@ -212,13 +212,13 @@
|
||||
// Previous button
|
||||
$nav_prev = jQuery(document.createElement('span'))
|
||||
.addClass('egwpopup_nav_prev')
|
||||
.attr('title',egw.lang('previous message'))
|
||||
.attr('title',egw.lang('previous'))
|
||||
.click(jQuery.proxy(this.nav_button, this,[$message, "prev"]))
|
||||
.prependTo($top_toolbar);
|
||||
// Next button
|
||||
$nav_next = jQuery(document.createElement('span'))
|
||||
.addClass('egwpopup_nav_next')
|
||||
.attr('title',egw.lang('next message'))
|
||||
.attr('title',egw.lang('next'))
|
||||
.click(jQuery.proxy(this.nav_button, this,[$message, "next"]))
|
||||
.prependTo($top_toolbar);
|
||||
// Delete button
|
||||
@ -466,7 +466,7 @@
|
||||
delete (notifymessages[id]);
|
||||
// try to close the dialog if expanded before hidding it
|
||||
this.collapseMessage(_node, _event);
|
||||
egwpopup_message.hide();
|
||||
egwpopup_message.remove();
|
||||
this.bell("inactive");
|
||||
this.counterUpdate();
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user