Skip to content

Commit d99a921

Browse files
alter naming of tool select
1 parent f16c749 commit d99a921

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ <h1>Choose a License for Your Work</h1>
9999

100100

101101

102-
<form id="license-chooser">
102+
<form id="chooser">
103103

104104
<ol>
105105

@@ -136,8 +136,8 @@ <h1>Choose a License for Your Work</h1>
136136
<!-- <legend>Choose a License</legend> -->
137137
<legend>Which license do you need?</legend>
138138

139-
<label for="license">License</label>
140-
<select name="license" id="license">
139+
<label for="tool">License</label>
140+
<select name="tool" id="tool">
141141
<option value="noselect" selected>&mdash;choose a license&mdash;</option>
142142
<option value="cc-0">CC0 1.0</option>
143143
<option value="cc-by">CC-BY 4.0</option>

src/scripts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ function clearStepsAfterCursor(fieldsets, state) {
193193
if (index > state.props.cursor) {
194194

195195
if (index == 1) {
196-
element.querySelector("#license").value = "noselect";
196+
element.querySelector("#tool").value = "noselect";
197197
}
198198

199199
// if (index = 8) {

0 commit comments

Comments
 (0)