mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
correcting typos in trigger node... oops
This commit is contained in:
parent
04673c65f4
commit
bbaf7bf247
@ -37,11 +37,11 @@ module.exports = function(RED) {
|
|||||||
if (!isNaN(this.op1)) { this.op1 = Number(this.op1); }
|
if (!isNaN(this.op1)) { this.op1 = Number(this.op1); }
|
||||||
if (!isNaN(this.op2)) { this.op2 = Number(this.op2); }
|
if (!isNaN(this.op2)) { this.op2 = Number(this.op2); }
|
||||||
if (this.op1 == "true") { this.op1 = true; }
|
if (this.op1 == "true") { this.op1 = true; }
|
||||||
if (this.op2 == "true") { this.op1 = true; }
|
if (this.op2 == "true") { this.op2 = true; }
|
||||||
if (this.op1 == "false") { this.op2 = false; }
|
if (this.op1 == "false") { this.op1 = false; }
|
||||||
if (this.op2 == "false") { this.op2 = false; }
|
if (this.op2 == "false") { this.op2 = false; }
|
||||||
if (this.op1 == "null") { this.op1 = null; }
|
if (this.op1 == "null") { this.op1 = null; }
|
||||||
if (this.op2 == "null") { this.op1 = null; }
|
if (this.op2 == "null") { this.op2 = null; }
|
||||||
try { this.op1 = JSON.parse(this.op1); }
|
try { this.op1 = JSON.parse(this.op1); }
|
||||||
catch(e) { this.op1 = this.op1; }
|
catch(e) { this.op1 = this.op1; }
|
||||||
try { this.op2 = JSON.parse(this.op2); }
|
try { this.op2 = JSON.parse(this.op2); }
|
||||||
|
Loading…
Reference in New Issue
Block a user