RailsCasts Pro episodes are now free!

Learn more or hide this

Oldani Pablo's Profile

GitHub User: olvap

Site: www.olvap.com.ar

Comments by Oldani Pablo

Avatar

if some one else has a problem with create.js using rails 3.2 you need to change the controller action create

ruby
  def create
    @message = Message.create!(params[:message])
    redirect_to :action => 'create', :format =>'js'
  end