summaryrefslogtreecommitdiff
path: root/js/Sinks/CSCOPE.js
diff options
context:
space:
mode:
authorSunil Shetye2018-07-06 12:20:13 +0530
committerSunil Shetye2018-07-09 12:16:25 +0530
commit5c011853630a1b466ef4789d5b600dd530d0a3ec (patch)
treefe2935154d2c500f1d883a4b319235bb67628477 /js/Sinks/CSCOPE.js
parent5a28e41a3105338f747b8a30f67000920490c67d (diff)
downloadsci2js-5c011853630a1b466ef4789d5b600dd530d0a3ec.tar.gz
sci2js-5c011853630a1b466ef4789d5b600dd530d0a3ec.tar.bz2
sci2js-5c011853630a1b466ef4789d5b600dd530d0a3ec.zip
use different syntax for matrix options
Diffstat (limited to 'js/Sinks/CSCOPE.js')
-rw-r--r--js/Sinks/CSCOPE.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/Sinks/CSCOPE.js b/js/Sinks/CSCOPE.js
index 82bd20c3..43549e3b 100644
--- a/js/Sinks/CSCOPE.js
+++ b/js/Sinks/CSCOPE.js
@@ -28,10 +28,10 @@ function CSCOPE() {
}
CSCOPE.prototype.get = function CSCOPE() {
var options = {
- clrs:["Color (>0) or mark (<0) vector (8 entries)",this.clrs],
+ clrs:["Color (>0) or mark (<0) vector (8 entries)",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," ")],
ymin:["Ymin",this.ymin],
ymax:["Ymax",this.ymax],
per:["Refresh period",this.per],