Skip to content

Commit 94813f5

Browse files
authored
Merge pull request #174 from codeitcodes/dev
2 parents f8aac4b + 1471586 commit 94813f5

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

full.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@
191191
<path d="M0 0h24v24H0V0z" fill="none"></path>
192192
<path d="M14.71 6.71c-.39-.39-1.02-.39-1.41 0L8.71 11.3c-.39.39-.39 1.02 0 1.41l4.59 4.59c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L10.83 12l3.88-3.88c.39-.39.38-1.03 0-1.41z" fill="currentColor"></path>
193193
</svg>
194-
<div class="search-input" contenteditable="plaintext-only" spellcheck="false" autocorrect="off" autocomplete="off" aria-autocomplete="list" autocapitalize="off" dir="auto"></div>
194+
<div class="search-input" contenteditable="plaintext-only" spellcheck="false" autocorrect="off" autocomplete="off" aria-autocomplete="list" autocapitalize="off" dir="auto" enterkeyhint="search"></div>
195195
</div>
196196
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24" class="clear roundbutton">
197197
<path d="M0 0h24v24H0V0z" fill="none"></path>

lib/codeit.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
33
codeit.js
4-
v3.0.6
4+
v3.0.7
55
MIT License
66
77
https://codeit.codes
@@ -61,6 +61,7 @@ class CodeitElement extends HTMLElement {
6161
cd.setAttribute('aria-autocomplete', 'list');
6262
cd.setAttribute('autocapitalize', 'off');
6363
cd.setAttribute('data-gramm', 'false');
64+
cd.setAttribute('enterkeyhint', 'enter');
6465

6566
}
6667

@@ -1607,6 +1608,7 @@ class CodeitElement extends HTMLElement {
16071608
cd.setAttribute('aria-autocomplete', 'list');
16081609
cd.setAttribute('autocapitalize', 'off');
16091610
cd.setAttribute('data-gramm', 'false');
1611+
cd.setAttribute('enterkeyhint', 'enter');
16101612

16111613
} else {
16121614

worker/client-channel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
// update worker name when updating worker
7-
const WORKER_NAME = 'codeit-worker-v537';
7+
const WORKER_NAME = 'codeit-worker-v538';
88

99

1010
// internal paths

0 commit comments

Comments
 (0)