Skip to content

Commit

Permalink
Merge pull request loopj#216 from ledermann/master
Browse files Browse the repository at this point in the history
Don't change the search term to lower case
  • Loading branch information
loopj committed Nov 17, 2011
2 parents 34af0ee + ed10421 commit 2bac4f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jquery.tokeninput.js
Expand Up @@ -732,7 +732,7 @@ $.TokenList = function (input, url_or_data, settings) {
// Do a search and show the "searching" dropdown if the input is longer
// than settings.minChars
function do_search() {
var query = input_box.val().toLowerCase();
var query = input_box.val();

if(query && query.length) {
if(selected_token) {
Expand Down

0 comments on commit 2bac4f2

Please sign in to comment.