Skip to content
This repository was archived by the owner on Sep 10, 2023. It is now read-only.

Commit 2bac4f2

Browse files
committed
Merge pull request #216 from ledermann/master
Don't change the search term to lower case
2 parents 34af0ee + ed10421 commit 2bac4f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jquery.tokeninput.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ $.TokenList = function (input, url_or_data, settings) {
732732
// Do a search and show the "searching" dropdown if the input is longer
733733
// than settings.minChars
734734
function do_search() {
735-
var query = input_box.val().toLowerCase();
735+
var query = input_box.val();
736736

737737
if(query && query.length) {
738738
if(selected_token) {

0 commit comments

Comments
 (0)