- commit
- a60f29fefe065ed50220a788d09250aa55d35f98
- parent
- 071d65539682cb242e29d36aa4907981ea007ce9
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2021-03-28 20:20
focus input after value click
Diffstat
| M | select.js | 1 | + |
1 files changed, 1 insertions, 0 deletions
diff --git a/select.js b/select.js
@@ -111,6 +111,7 @@ export class Select {
111 111 li.onclick = () => {
112 112 this.original.options[i].selected = false;
113 113 li.remove();
-1 114 this.input.focus();
114 115 };
115 116 this.values.append(li);
116 117 }