From 521d5fdc72f776e255454a4229bfd1a110da8bc3 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 26 Jun 2005 14:23:36 +0000 Subject: Added auto_complete_for to controller and text_field_with_auto_complete to view to make it really, really easy to do Google Suggest style interfaces git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1525 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'actionpack/lib/action_controller.rb') diff --git a/actionpack/lib/action_controller.rb b/actionpack/lib/action_controller.rb index 70722a0e73..deead18b5a 100755 --- a/actionpack/lib/action_controller.rb +++ b/actionpack/lib/action_controller.rb @@ -49,6 +49,7 @@ require 'action_controller/caching' require 'action_controller/components' require 'action_controller/verification' require 'action_controller/streaming' +require 'action_controller/auto_complete' require 'action_view' ActionController::Base.template_class = ActionView::Base @@ -69,4 +70,5 @@ ActionController::Base.class_eval do include ActionController::Components include ActionController::Verification include ActionController::Streaming + include ActionController::AutoComplete end -- cgit v1.2.3