mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-25 08:23:28 +00:00
generic.css
Monotone-Parent: d0a487816750ff28414ee58d1b18b6958dba1a95 Monotone-Revision: ae5fd1cb71edba3016f8edd102e7a43615acc56c Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2012-03-13T15:56:03
This commit is contained in:
@@ -2928,7 +2928,7 @@ function configureDraggables() {
|
||||
onEnd: stopDragging,
|
||||
onDrag: whileDragging,
|
||||
scroll: "folderTreeContent",
|
||||
delay: 100 });
|
||||
delay: 250 });
|
||||
}
|
||||
|
||||
function configureDroppables() {
|
||||
@@ -2961,6 +2961,9 @@ function startDragging (itm, e) {
|
||||
if (target.up('TBODY') == undefined)
|
||||
return;
|
||||
|
||||
console.info("start dragging");
|
||||
$("mailboxList").setStyle({ overflow: "visible" });
|
||||
|
||||
var row = target.up('TR');
|
||||
var handle = $("dragDropVisual");
|
||||
var selectedIds = $("messageListBody").getSelectedRowsId();
|
||||
@@ -2996,7 +2999,9 @@ function whileDragging (itm, e) {
|
||||
}
|
||||
}
|
||||
|
||||
function stopDragging () {
|
||||
function stopDragging() {
|
||||
console.info("stop dragging");
|
||||
$("mailboxList").setStyle({ overflow: "auto" });
|
||||
var handle = $("dragDropVisual");
|
||||
handle.hide();
|
||||
if (handle.hasClassName("copy"))
|
||||
|
||||
Reference in New Issue
Block a user