module RailsAjax::UrlHelper
Module defining methods to include in ActionView::Helpers::FormHelper
Public Instance Methods
link_to(name = nil, options = nil, html_options = nil, &block)
click to toggle source
Adapt #link_to method to handle Ajax queries automatically
Calls superclass method
# File lib/rails-ajax/url_helper.rb, line 7 def link_to(name = nil, options = nil, html_options = nil, &block) options, html_options = name, options if block_given? html_options ||= {} html_options.merge!({ :remote => true, :'data-rails-ajax-remote' => true }) if (RailsAjax.config.enabled? and RailsAjax.rails_ajaxifiable?(html_options)) if block_given? return super(options, html_options, &block) else return super(name, options, html_options) end end