Skip to content

Commit 4a7d31b

Browse files
committed
Update console
1 parent 9605bcb commit 4a7d31b

10 files changed

Lines changed: 67 additions & 1420 deletions

.idea/workspace.xml

Lines changed: 61 additions & 75 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

javascripts/mainorg.js

Lines changed: 0 additions & 736 deletions
This file was deleted.

javascripts/update.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,17 @@ function submitInput(draw) {
1717
var isFlow = document.getElementById("flow").checked;
1818
var isAv = document.getElementById("av").checked;
1919
if (isFlow && isAv) {
20-
console.log("Flow and Av");
2120
globalFlag = "fa";
2221
}
2322
else if (isFlow && !isAv) {
24-
console.log("Just Flow");
2523
globalFlag = "f";
2624
}
2725

2826
else if (!isFlow && isAv) {
29-
console.log("Just AV");
3027
globalFlag = "a";
3128
}
3229

3330
else if (!isFlow && !isAv) {
34-
console.log("None");
3531
globalFlag = "n";
3632
}
3733

0 commit comments

Comments
 (0)