mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-04 05:21:15 +02:00
Correct the cursor after the drag item re-enabled by mouseup event
This commit is contained in:
@ -302,6 +302,8 @@ function egwDragActionImplementation()
|
||||
},
|
||||
mouseup: function (){
|
||||
$j(node).draggable("enable");
|
||||
// Set cursor back to auto. Seems FF can't handle cursor reversion
|
||||
$j('body').css({cursor:'auto'});
|
||||
}
|
||||
});
|
||||
}
|
||||
@ -368,8 +370,7 @@ function egwDragActionImplementation()
|
||||
egw.lang("Ctrl") : egw.lang("Command ⌘");
|
||||
egw.message(egw.lang('Hold [%1] key to select text eg. to copy it', key), 'info');
|
||||
}
|
||||
// Set cursor back to auto. Seems FF can't handle cursor reversion
|
||||
$j('body').css({cursor:'auto'});
|
||||
|
||||
// Invalid target
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user