From 5c011853630a1b466ef4789d5b600dd530d0a3ec Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Fri, 6 Jul 2018 12:20:13 +0530 Subject: use different syntax for matrix options --- js/Sinks/CSCOPE.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'js/Sinks/CSCOPE.js') 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], -- cgit