diff options
author | Rick Olson <technoweenie@gmail.com> | 2006-06-21 02:18:41 +0000 |
---|---|---|
committer | Rick Olson <technoweenie@gmail.com> | 2006-06-21 02:18:41 +0000 |
commit | 5525b79b636b39875d6cd4aa1386d8dec4beb6ce (patch) | |
tree | e09c170628da6e4ffe102846bec146911cfd633c /actionpack | |
parent | 53924078d09f8999fe1a2d0e52abf5fdeddc0f30 (diff) | |
download | rails-5525b79b636b39875d6cd4aa1386d8dec4beb6ce.tar.gz rails-5525b79b636b39875d6cd4aa1386d8dec4beb6ce.tar.bz2 rails-5525b79b636b39875d6cd4aa1386d8dec4beb6ce.zip |
Fix in auto_complete_result documentation. closes #5096. [medlar@medlar.it]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4478 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/helpers/java_script_macros_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/java_script_macros_helper.rb b/actionpack/lib/action_view/helpers/java_script_macros_helper.rb index 2cb64c95c8..e9b5b0081b 100644 --- a/actionpack/lib/action_view/helpers/java_script_macros_helper.rb +++ b/actionpack/lib/action_view/helpers/java_script_macros_helper.rb @@ -161,7 +161,7 @@ module ActionView # @items = Item.find(:all, # :conditions => [ 'LOWER(description) LIKE ?', # '%' + request.raw_post.downcase + '%' ]) - # render :inline => '<%= auto_complete_result(@items, 'description') %>' + # render :inline => "<%= auto_complete_result(@items, 'description') %>" # end # # The auto_complete_result can of course also be called from a view belonging to the |