mirror of https://github.com/node-red/node-red.git
Merge pull request #2850 from node-red-hitachi/fix-grant-jshint-failure
fix jshint failurepull/2296/head
commit
ac68e9c6b5
|
@ -175,7 +175,8 @@ RED.sidebar.info.outliner = (function() {
|
|||
if (targetState === undefined) {
|
||||
targetState = !n.d;
|
||||
}
|
||||
if (!!n.d !== targetState) {
|
||||
var state = !!n.d;
|
||||
if (state !== targetState) {
|
||||
var historyEvent = {
|
||||
t: "edit",
|
||||
node: n,
|
||||
|
|
Loading…
Reference in New Issue