mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
remove unused var
This commit is contained in:
parent
0f2420576a
commit
5561e89201
@ -93,7 +93,6 @@ RED.view = (function() {
|
|||||||
var selectNodesOptions;
|
var selectNodesOptions;
|
||||||
|
|
||||||
let flashingNodeId;
|
let flashingNodeId;
|
||||||
let flashingNodeTimer;
|
|
||||||
|
|
||||||
var clipboard = "";
|
var clipboard = "";
|
||||||
|
|
||||||
@ -5866,7 +5865,7 @@ RED.view = (function() {
|
|||||||
if (flashEndTime >= Date.now()) {
|
if (flashEndTime >= Date.now()) {
|
||||||
n.highlighted = !n.highlighted;
|
n.highlighted = !n.highlighted;
|
||||||
} else {
|
} else {
|
||||||
clearInterval(__flashTimer);
|
clearInterval(n.__flashTimer);
|
||||||
delete n.__flashTimer;
|
delete n.__flashTimer;
|
||||||
flashingNodeId = null;
|
flashingNodeId = null;
|
||||||
n.highlighted = false;
|
n.highlighted = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user