Files
forum/app/helpers/application_helper.rb
2013-01-21 19:10:48 -05:00

9 lines
174 B
Ruby
Executable File

module ApplicationHelper
def cancel_link
return link_to 'Cancel', request.env["HTTP_REFERER"],
:confirm => 'Are you sure? Any changes will be lost.'
end
end