mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-04-04 11:10:04 -04:00
reduce number of times caretPosition() is called
This commit is contained in:
parent
97b60e6422
commit
f3337ab551
1 changed files with 3 additions and 2 deletions
|
@ -259,19 +259,20 @@ export default function(options) {
|
|||
});
|
||||
|
||||
$(this).keypress(function(e) {
|
||||
var caretPosition = Discourse.Utilities.caretPosition(me[0]),
|
||||
term;
|
||||
var caretPosition, term;
|
||||
|
||||
if (!options.key) return;
|
||||
|
||||
// keep hunting backwards till you hit a the @ key
|
||||
if (e.which === options.key.charCodeAt(0)) {
|
||||
caretPosition = Discourse.Utilities.caretPosition(me[0]);
|
||||
var prevChar = me.val().charAt(caretPosition - 1);
|
||||
if (!prevChar || /\s/.test(prevChar)) {
|
||||
completeStart = completeEnd = caretPosition;
|
||||
updateAutoComplete(options.dataSource(""));
|
||||
}
|
||||
} else if ((completeStart !== null) && (e.charCode !== 0)) {
|
||||
caretPosition = Discourse.Utilities.caretPosition(me[0]),
|
||||
term = me.val().substring(completeStart + (options.key ? 1 : 0), caretPosition);
|
||||
term += String.fromCharCode(e.charCode);
|
||||
updateAutoComplete(options.dataSource(term));
|
||||
|
|
Loading…
Add table
Reference in a new issue