forked from FoundKeyGang/FoundKey
Fix typo: trimed -> trimmed
This commit is contained in:
parent
871a461fb1
commit
87fb079e5b
1 changed files with 2 additions and 2 deletions
|
@ -114,11 +114,11 @@ class Autocomplete {
|
|||
const source = this.textarea.value;
|
||||
|
||||
const before = source.substr(0, caret);
|
||||
const trimedBefore = before.substring(0, before.lastIndexOf('@'));
|
||||
const trimmedBefore = before.substring(0, before.lastIndexOf('@'));
|
||||
const after = source.substr(caret);
|
||||
|
||||
// 結果を挿入する
|
||||
this.textarea.value = trimedBefore + '@' + value + ' ' + after;
|
||||
this.textarea.value = trimmedBefore + '@' + value + ' ' + after;
|
||||
|
||||
// キャレットを戻す
|
||||
this.textarea.focus();
|
||||
|
|
Loading…
Reference in a new issue