diff options
author | Sunil Shetye | 2018-07-06 12:20:13 +0530 |
---|---|---|
committer | Sunil Shetye | 2018-07-09 12:16:25 +0530 |
commit | 5c011853630a1b466ef4789d5b600dd530d0a3ec (patch) | |
tree | fe2935154d2c500f1d883a4b319235bb67628477 /js/Sinks/CEVENTSCOPE.js | |
parent | 5a28e41a3105338f747b8a30f67000920490c67d (diff) | |
download | sci2js-5c011853630a1b466ef4789d5b600dd530d0a3ec.tar.gz sci2js-5c011853630a1b466ef4789d5b600dd530d0a3ec.tar.bz2 sci2js-5c011853630a1b466ef4789d5b600dd530d0a3ec.zip |
use different syntax for matrix options
Diffstat (limited to 'js/Sinks/CEVENTSCOPE.js')
-rw-r--r-- | js/Sinks/CEVENTSCOPE.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/Sinks/CEVENTSCOPE.js b/js/Sinks/CEVENTSCOPE.js index c69e296c..9dcd508f 100644 --- a/js/Sinks/CEVENTSCOPE.js +++ b/js/Sinks/CEVENTSCOPE.js @@ -25,10 +25,10 @@ function CEVENTSCOPE() { CEVENTSCOPE.prototype.get = function CEVENTSCOPE() { var options = { nclock:["Number of event inputs",this.nclock], - clrs:["colors c (>0) or mark (<0)",this.clrs], + clrs:["colors c (>0) or mark (<0)",this.clrs.toString().replace(/,/g," ")], win:["Output window number (-1 for automatic)",this.win], - wpos:["Output window position",this.wpos], - wdim:["Output window sizes",this.wdim], + wpos:["Output window position",this.wpos.toString().replace(/,/g," ")], + wdim:["Output window sizes",this.wdim.toString().replace(/,/g," ")], per:["Refresh period",this.per], } return options; |