Skip to content

Commit 6045a87

Browse files
chore: cleanup for october user testing (#77)
* chore: remove visual noise from test page * chore: change default scenario to simple circle for testing
1 parent 81a60ee commit 6045a87

File tree

2 files changed

+1
-22
lines changed

2 files changed

+1
-22
lines changed

test/index.html

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -101,27 +101,6 @@
101101
</select>
102102
</form>
103103
</div>
104-
<h3 id="description"></h3>
105-
<p>
106-
This page is an active site for development of keyboard navigation
107-
for Blockly.
108-
</p>
109-
<p>Keyboard navigation is enabled by default.</p>
110-
<p>You can navigate with the arrow keys.</p>
111-
<p>Press / to see a full list of shortcuts at any time.</p>
112-
<p>
113-
The announcer region (below) updates in response to some commands.
114-
</p>
115-
<p>
116-
The code can be found on
117-
<a href="https://github.com/google/blockly-keyboard-experimentation"
118-
>github</a
119-
>
120-
</p>
121-
<h3 id="announcerHeading">Announcer region:</h3>
122-
<div id="announceWrapper">
123-
<p id="announcer"></p>
124-
</div>
125104
</div>
126105
</div>
127106
<div id="blocklyDiv"></div>

test/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import {runCode, registerRunCodeShortcut} from './runCode';
2727
function loadScenario(workspace: Blockly.WorkspaceSvg) {
2828
const scenarioSelector = location.search.match(/scenario=([^&]+)/);
2929
// Default to the sunny day example.
30-
const scenarioString = scenarioSelector ? scenarioSelector[1] : 'sun';
30+
const scenarioString = scenarioSelector ? scenarioSelector[1] : 'simpleCircle';
3131
const selector = document.getElementById(
3232
'scenarioSelect',
3333
) as HTMLSelectElement;

0 commit comments

Comments
 (0)