Created
March 31, 2017 07:22
-
-
Save leemour/9d1d6bc0098737dae689b4cd47b8ed20 to your computer and use it in GitHub Desktop.
Rails helper example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################ | |
## 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