mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Hide tooltips when a node is deleted
This commit is contained in:
parent
5cfc52ea18
commit
d4589ed7e3
@ -1343,6 +1343,10 @@ RED.view = (function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
function deleteSelection() {
|
function deleteSelection() {
|
||||||
|
if (portLabelHover) {
|
||||||
|
portLabelHover.remove();
|
||||||
|
portLabelHover = null;
|
||||||
|
}
|
||||||
if (moving_set.length > 0 || selected_link != null) {
|
if (moving_set.length > 0 || selected_link != null) {
|
||||||
var result;
|
var result;
|
||||||
var removedNodes = [];
|
var removedNodes = [];
|
||||||
|
Loading…
Reference in New Issue
Block a user