correct autocomplete edge case on android

@ backspace @ was not opening an autocomplete
This commit is contained in:
Sam 2016-02-24 15:20:12 +11:00
parent ee931e9f76
commit bc61cfcad4
1 changed files with 2 additions and 1 deletions

View File

@ -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) {