mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
correct autocomplete edge case on android
@ backspace @ was not opening an autocomplete
This commit is contained in:
parent
ee931e9f76
commit
bc61cfcad4
1 changed files with 2 additions and 1 deletions
|
@ -75,6 +75,7 @@ export default function(options) {
|
|||
var completeEnd = null;
|
||||
var me = this;
|
||||
var div = null;
|
||||
var prevTerm = null;
|
||||
|
||||
// input is handled differently
|
||||
var isInput = this[0].tagName === "INPUT";
|
||||
|
@ -87,6 +88,7 @@ export default function(options) {
|
|||
div = null;
|
||||
completeStart = null;
|
||||
autocompleteOptions = null;
|
||||
prevTerm = null;
|
||||
};
|
||||
|
||||
var addInputSelectedItem = function(item) {
|
||||
|
@ -248,7 +250,6 @@ export default function(options) {
|
|||
};
|
||||
|
||||
const SKIP = "skip";
|
||||
var prevTerm = null;
|
||||
|
||||
const dataSource = (term, opts) => {
|
||||
if (prevTerm === term) {
|
||||
|
|
Loading…
Reference in a new issue