Monotone-Parent: f69d60b9d521e7955f8e0a7051cb02f730a5b031

Monotone-Revision: d945e377de4cef58cd3319068ed383074d42b243

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-11-01T16:57:44
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2006-11-01 16:57:44 +00:00
parent 824c7ab807
commit 7d0d729557
4 changed files with 30 additions and 21 deletions
+2 -2
View File
@@ -661,7 +661,7 @@ function startHandleDragging(event) {
dragHandleOrigX = dragHandle.offsetLeft;
dragHandleOrigLeft = document.getElementById(leftBlock).offsetWidth;
dragHandleDiff = 0;
dragHandleOrigRight = document.getElementById(rightBlock).offsetLeft;
dragHandleOrigRight = document.getElementById(rightBlock).offsetLeft - 5;
document.body.style.cursor = "e-resize";
} else if (upperBlock && lowerBlock) {
dragHandle.dhType = 'vertical';
@@ -670,7 +670,7 @@ function startHandleDragging(event) {
dragHandleOrigY = dragHandle.offsetTop;
dragHandleOrigUpper = uBlock.offsetHeight;
dragHandleDiff = event.clientY - dragHandle.offsetTop;
dragHandleOrigLower = lBlock.offsetTop;
dragHandleOrigLower = lBlock.offsetTop - 5;
document.body.style.cursor = "n-resize";
}