mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
Center 'Edit series' popup in window
This commit is contained in:
parent
74c683f6b2
commit
789b51d5cd
@ -1032,7 +1032,11 @@ function edit_series(id,date)
|
|||||||
calendar_edit_id = id;
|
calendar_edit_id = id;
|
||||||
calendar_edit_date = date;
|
calendar_edit_date = date;
|
||||||
|
|
||||||
document.getElementById("edit_series").style.display = "inline";
|
var popup = jQuery("#edit_series").show();
|
||||||
|
popup.css({
|
||||||
|
top: $j(window).height()/2-popup.height()/2,
|
||||||
|
left: $j(window).width()/2-popup.width()/2
|
||||||
|
});
|
||||||
}
|
}
|
||||||
function open_edit(series)
|
function open_edit(series)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user