[rkward-cvs] SF.net SVN: rkward:[2728] trunk/rkward/rkward/plugins/plots/plot_options.js
tfry at users.sourceforge.net
tfry at users.sourceforge.net
Thu Dec 17 17:06:58 UTC 2009
Revision: 2728
http://rkward.svn.sourceforge.net/rkward/?rev=2728&view=rev
Author: tfry
Date: 2009-12-17 17:06:57 +0000 (Thu, 17 Dec 2009)
Log Message:
-----------
Small fix
Modified Paths:
--------------
trunk/rkward/rkward/plugins/plots/plot_options.js
Modified: trunk/rkward/rkward/plugins/plots/plot_options.js
===================================================================
--- trunk/rkward/rkward/plugins/plots/plot_options.js 2009-12-17 16:39:38 UTC (rev 2727)
+++ trunk/rkward/rkward/plugins/plots/plot_options.js 2009-12-17 17:06:57 UTC (rev 2728)
@@ -43,13 +43,13 @@
xvars = getValue ("xvar").split ("\n");
if (xvars.length > 1) {
- xvar = "c (" + join (", ", xvars) + ")";
+ xvar = "c (" + xvars.join (", ") + ")";
} else {
xvar = xvars[0];
}
yvars = getValue ("yvar").split ("\n");
if (yvars.length > 1) {
- yvar = "c (" + join (", ", yvars) + ")";
+ yvar = "c (" + xvars.join (", ") + ")";
} else {
yvar = yvars[0];
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the rkward-tracker
mailing list