Skip to content

Commit

Permalink
Syntax change
Browse files Browse the repository at this point in the history
  • Loading branch information
meltingice committed Dec 15, 2012
1 parent ace146a commit a18cd42
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/ajax-chosen.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/ajax-chosen.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/ajax-chosen.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ do ($ = jQuery) ->

# Depending on how much text the user has typed, let them know
# if they need to keep typing or if we are looking for their data
msg = if val.length < options.minTermLength then options.keepTypingMsg else options.lookingForMsg + " '" + val + "'"
msg = if val.length < options.minTermLength then options.keepTypingMsg else options.lookingForMsg + " '#{val}'"
select.next('.chzn-container').find('.no-results').text(msg)

# If input text has not changed ... do nothing
Expand Down

0 comments on commit a18cd42

Please sign in to comment.