We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1949753 commit dca5304Copy full SHA for dca5304
javascripts/demo.js
@@ -1013,9 +1013,10 @@ function demo() {
1013
command += ")";
1014
}
1015
1016
- // if (model.input.prefix) {
1017
- // command += " -prefix=\"" + model.input.prefix + "\"";
1018
- // }
+ var prefix = model.input.prefix.replaceAll(" ", "");
+ if (prefix) {
+ command += " -prefix=" + prefix;
1019
+ }
1020
1021
var req = $.ajax({
1022
type: "POST",
0 commit comments