diff --git a/experiment-scripts/index.html b/experiment-scripts/index.html
index b694f8c..10eb489 100644
--- a/experiment-scripts/index.html
+++ b/experiment-scripts/index.html
@@ -250,17 +250,6 @@
-
-
-
@@ -582,18 +571,12 @@
document.getElementById("button-create-word-items").addEventListener("click", () => {
// Validate inputs
const groupId = document.getElementById("group-id").value;
- const conditionMode = document.getElementById("condition-mode").value;
if (!groupId || !groupId.trim()) {
alert("Please enter a Group ID before starting.");
return;
}
- if (!conditionMode) {
- alert("Please select a Condition/Mode before starting.");
- return;
- }
-
// Get total duration in milliseconds
const totalDurationMin = parseFloat(document.getElementById("total-duration").value) || 0;
totalDurationMs = totalDurationMin * 60 * 1000;
@@ -620,7 +603,7 @@
experimentStartTime = null;
frameId = requestAnimationFrame(step);
- console.log(`Experiment started: Group=${groupId}, Mode=${conditionMode}, Duration=${totalDurationMin}min`);
+ console.log(`Experiment started: Group=${groupId}, Duration=${totalDurationMin}min`);
});
document.getElementById('button-word').addEventListener('click', () => {