Skip to content

Instantly share code, notes, and snippets.

@leemour
Created March 31, 2017 07:22
Show Gist options
  • Save leemour/9d1d6bc0098737dae689b4cd47b8ed20 to your computer and use it in GitHub Desktop.
Save leemour/9d1d6bc0098737dae689b4cd47b8ed20 to your computer and use it in GitHub Desktop.
Rails helper example
############################
## Make it simple =) ##
############################
module RemoteFormHelper
def remote_form(path, &block)
simple_form_for path, remote: true do |f|
yield f
concat f.submit 'Save', class: 'ui save green button'
concat link_to 'Cancel', '#', class: 'ui cancel button'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment