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
Few days ago I got error report triggered by user using Chrome (50.0).
Invalid regular expression: /^+/: Nothing to repeat
The culprit code can be found here:
.on('oninput' in $input[0] ? 'input' : 'keyup', function() { if ( $input.val().length ) { // Search in select options $.each(_this.items, function(i, elm) { if ( RegExp('^' + $input.val(), 'i').test(elm.slug) && !elm.disabled ) { _select(i); return false; } }); } });
Probably there should be an additional check if value is empty?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Few days ago I got error report triggered by user using Chrome (50.0).
Invalid regular expression: /^+/: Nothing to repeat
The culprit code can be found here:
Probably there should be an additional check if value is empty?
The text was updated successfully, but these errors were encountered: