window.setTimeout(function() {
// Get the current element with focus.
var focusElement = $(document.activeElement);
+ var timeoutPromise = $.Deferred();
// Only close the menu if the input hasn't regained focus and if the element still exists,
// and regain focus if the scrollbar is clicked.
inputElement.focus(); // Probably the scrollbar is clicked. Regain focus.
} else if (!focusElement.is(inputElement) && $(document.getElementById(state.inputId)).length) {
if (options.tags) {
- pendingPromise.then(function() {
+ timeoutPromise.then(function() {
return createItem(options, state, originalSelect);
})
.catch();
}
- pendingPromise.then(function() {
+ timeoutPromise.then(function() {
return closeSuggestions(state);
})
.catch();
}
- pendingPromise.resolve();
+ timeoutPromise.then(function() {
+ return pendingPromise.resolve();
+ })
+ .catch();
+ timeoutPromise.resolve();
}, 500);
});
if (options.showSuggestions) {