Skip to content

Commit 27a9d8e

Browse files
committed
increment version for npm publish
1 parent e2079fd commit 27a9d8e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "multiple-select-js",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "Simple js library for html5 multiple select",
55
"main": "src/MultipleSelect.js",
66
"scripts": {

src/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ <h1>Multiple Select</h1>
1616
<div>
1717
<div class="form-group">
1818
<label for="select-language">Normal Select</label>
19-
<select name="" class="form-control">
19+
<select class="form-control">
2020
<option value="php">PHP</option>
2121
<option value="javascript">Javascript</option>
2222
<option value="python">Python</option>
@@ -25,7 +25,7 @@ <h1>Multiple Select</h1>
2525
</div>
2626
<div class="form-group">
2727
<label for="select-language">Single Select</label>
28-
<select name="" id="select-language">
28+
<select id="select-language">
2929
<option value="php">PHP</option>
3030
<option value="javascript">Javascript</option>
3131
<option value="python">Python</option>
@@ -34,7 +34,7 @@ <h1>Multiple Select</h1>
3434
</div>
3535
<div class="form-group">
3636
<label for="select-language">Multiple Select</label>
37-
<select name="" id="select-multiple-language" multiple>
37+
<select id="select-multiple-language" multiple>
3838
<option value="php">PHP</option>
3939
<option value="javascript">Javascript</option>
4040
<option value="python">Python</option>

0 commit comments

Comments
 (0)