Remove rogue console.logs

This commit is contained in:
Nick O'Leary 2015-06-25 15:33:39 -07:00
parent 06731374a4
commit df0110913a
1 changed files with 0 additions and 2 deletions

View File

@ -23,9 +23,7 @@ module.exports = function(RED) {
this.op2 = n.op2 || "0";
this.op1type = n.op1type || "val";
this.op2type = n.op2type || "val";
console.log(n.extend,typeof n.extend);
this.extend = n.extend || "false";
console.log(this.extend);
this.units = n.units || "ms";
this.duration = n.duration || 250;
if (this.duration <= 0) { this.duration = 0; }