1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Merge pull request #2138 from kazuhitoyokoi/master-fixdraggable

Fix node drag and drop animation
This commit is contained in:
Nick O'Leary 2019-04-25 11:54:07 +01:00 committed by GitHub
commit 5c962aa899
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -254,8 +254,8 @@ RED.palette = (function() {
$(d).draggable({
helper: 'clone',
appendTo: 'body',
revert: true,
revertDuration: 50,
revert: 'invalid',
revertDuration: 300,
containment:'#main-container',
start: function() {
paletteWidth = $("#palette").width();
@ -264,11 +264,7 @@ RED.palette = (function() {
},
stop: function() { d3.select('.link_splice').classed('link_splice',false); if (spliceTimer) { clearTimeout(spliceTimer); spliceTimer = null;}},
drag: function(e,ui) {
// TODO: this is the margin-left of palette node. Hard coding
// it here makes me sad
//console.log(ui.helper.position());
ui.position.left += 17.5;
ui.originalPosition.left = $('#' + e.target.id).offset().left;
if (def.inputs > 0 && def.outputs > 0) {
mouseX = ui.position.left-paletteWidth+(ui.helper.width()/2) - chartOffset.left + chart.scrollLeft();