mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-21 11:25:24 +00:00
Monotone-Parent: 14ff365d11c0291a1eee9188cca51f506f40b9bc
Monotone-Revision: b5604f9be1835fd07dc55eeda120eb915788a892 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-09-26T18:45:34 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -101,8 +101,8 @@ function validateAptEditor() {
|
||||
|
||||
function submitMeeting(thisForm) {
|
||||
var action = document.getElementById('jsaction');
|
||||
action.setAttribute("name", "save:method");
|
||||
action.setAttribute("value", "save");
|
||||
// action.setAttribute("name", "save:method");
|
||||
// action.setAttribute("value", "save");
|
||||
|
||||
window.opener.log ("form: " + thisForm);
|
||||
|
||||
@@ -120,24 +120,16 @@ function submitMeeting(thisForm) {
|
||||
|
||||
function toggleDetails() {
|
||||
var div = $("details");
|
||||
|
||||
var buttonsDiv = $("buttons");
|
||||
var wHeight = 0;
|
||||
if (!window._fullHeight) {
|
||||
var minHeight = (buttonsDiv.offsetTop + 2 * buttonsDiv.clientHeight);
|
||||
window._fullHeight = minHeight + div.clientHeight;
|
||||
window._hiddenHeight = minHeight;
|
||||
}
|
||||
var buttons = $("buttons");
|
||||
var buttonsHeight = buttons.clientHeight * 3;
|
||||
|
||||
if (div.style.visibility) {
|
||||
div.style.visibility = null;
|
||||
buttonsDiv.top = (window._hiddenHeight + buttonsDiv.clientHeight) + 'px;';
|
||||
window.resizeTo(document.body.clientWidth, window._hiddenHeight);
|
||||
window.resizeBy(0, -(div.clientHeight + buttonsHeight));
|
||||
$("detailsButton").innerHTML = labels["Show Details"];
|
||||
} else {
|
||||
div.style.visibility = 'visible;';
|
||||
buttonsDiv.top = null;
|
||||
window.resizeTo(document.body.clientWidth, window._fullHeight);
|
||||
window.resizeBy(0, (div.clientHeight + buttonsHeight));
|
||||
$("detailsButton").innerHTML = labels["Hide Details"];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user