From 71d3f72e30b84eb7f5b531f0bc6b1dffb63bbf7a Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Thu, 27 May 2010 19:47:41 +0000 Subject: [PATCH] Set minimum top position of vertical drag handle to 160px. Monotone-Parent: 56738c967d1f191a027f45f12a017405441e69ca Monotone-Revision: 8cb32e7332149028a582fdeaa02597ac6d6f9627 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2010-05-27T19:47:41 Monotone-Branch: ca.inverse.sogo --- UI/WebServerResources/SOGoDragHandles.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/UI/WebServerResources/SOGoDragHandles.js b/UI/WebServerResources/SOGoDragHandles.js index be7488e8b..c2d037b01 100644 --- a/UI/WebServerResources/SOGoDragHandles.js +++ b/UI/WebServerResources/SOGoDragHandles.js @@ -2,7 +2,7 @@ var SOGoDragHandlesInterface = { leftMargin: 180, - topMargin: 140, + topMargin: 160, dhType: null, dhLimit: -1, origX: -1, @@ -198,10 +198,10 @@ var SOGoDragHandlesInterface = { }, saveDragHandleStateCallback: function (http) { if (isHttpStatus204(http.status)) { - log ("drag handle state saved"); + log ("Drag handle state saved"); } else if (http.readyState == 4) { - log ("can't save handle state"); + log ("Can't save handle state"); } } };