mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Allow Escape to clear the droptarget
This commit is contained in:
parent
af50fe876f
commit
19d5709e2a
@ -17,10 +17,15 @@ var RED = function() {
|
|||||||
|
|
||||||
$('#btn-keyboard-shortcuts').click(function(){showHelp();});
|
$('#btn-keyboard-shortcuts').click(function(){showHelp();});
|
||||||
|
|
||||||
|
function hideDropTarget() {
|
||||||
|
$("#dropTarget").hide();
|
||||||
|
RED.keyboard.remove(/* ESCAPE */ 27);
|
||||||
|
}
|
||||||
|
|
||||||
$('#chart').on("dragenter",function(event) {
|
$('#chart').on("dragenter",function(event) {
|
||||||
if ($.inArray("text/plain",event.originalEvent.dataTransfer.types) != -1) {
|
if ($.inArray("text/plain",event.originalEvent.dataTransfer.types) != -1) {
|
||||||
$("#dropTarget").css({display:'table'});
|
$("#dropTarget").css({display:'table'});
|
||||||
|
RED.keyboard.add(/* ESCAPE */ 27,hideDropTarget);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -30,12 +35,12 @@ var RED = function() {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
.on("dragleave",function(event) {
|
.on("dragleave",function(event) {
|
||||||
$("#dropTarget").hide();
|
hideDropTarget();
|
||||||
})
|
})
|
||||||
.on("drop",function(event) {
|
.on("drop",function(event) {
|
||||||
var data = event.originalEvent.dataTransfer.getData("text/plain");
|
var data = event.originalEvent.dataTransfer.getData("text/plain");
|
||||||
|
hideDropTarget();
|
||||||
RED.view.importNodes(data);
|
RED.view.importNodes(data);
|
||||||
$("#dropTarget").hide();
|
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user