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 bb56c62 commit 6262e14Copy full SHA for 6262e14
javascripts/demo.js
@@ -917,6 +917,8 @@ function demo() {
917
command += " -set-schedule=";
918
for (var i = 0; i < tblScheduleView.numRows; ++i) {
919
var c = $("#schedule" + i).val();
920
+ if (!c) { continue; }
921
+
922
var tempCommand = c + "-";
923
var valid = true;
924
@@ -932,7 +934,6 @@ function demo() {
932
934
if (valid) {
933
935
// only add if user inputted all parameters
936
command += tempCommand;
- console.log(tempCommand);
937
}
938
939
command += "q";
0 commit comments