Skip to content

Commit 3aee543

Browse files
committed
fix testbed page
1 parent 23e89ec commit 3aee543

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testbed/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ <h3 class="title">Planck.js</h3>
6666
const option = document.createElement('option');
6767
option.value = '?example=' + example;
6868
option.innerHTML = example;
69-
option.selected = window.location.search.indexOf(example) > -1;
69+
option.selected = window.location.search.indexOf("=" + example) > -1;
7070
listSelect.appendChild(option);
7171
}
7272

0 commit comments

Comments
 (0)