We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When you use "maxItems: 1" the cursor will stay in the field after selecting one element (IE 8+). The problem is this method:
input.blur( function() { isactive = false; if (complete_hover) { complete.fadeOut("fast"); } else { input.focus(); } });
Everytime I try to leave the field the focus jumps right back. I added
if (!maxItems ()) return;
as the first line of the method and it works fine now.
The text was updated successfully, but these errors were encountered:
Also happens in Chrome.
#107
Sorry, something went wrong.
No branches or pull requests
When you use "maxItems: 1" the cursor will stay in the field after selecting one element (IE 8+).
The problem is this method:
input.blur( function() {
isactive = false;
if (complete_hover) {
complete.fadeOut("fast");
} else {
input.focus();
}
});
Everytime I try to leave the field the focus jumps right back.
I added
if (!maxItems ()) return;
as the first line of the method and it works fine now.
The text was updated successfully, but these errors were encountered: