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
This commit is contained in:
Francis Lachapelle
2010-05-27 19:47:41 +00:00
parent 0176350dbc
commit 71d3f72e30

View File

@@ -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");
}
}
};