Skip to content

Instantly share code, notes, and snippets.

@dbarrionuevo
Created October 21, 2014 18:21
Show Gist options
  • Save dbarrionuevo/bebcde3c61780ce606f9 to your computer and use it in GitHub Desktop.
Save dbarrionuevo/bebcde3c61780ce606f9 to your computer and use it in GitHub Desktop.
# Vista
a href="/services/jobs/new" data-behavior="add_service"
# Routes
get '/services/:root/new', to: 'services#new'
# Controller
def new
render partial: "services/new_#{params[:root]}"
end
# Behavior new_service
$.ajax({
type: 'GET',
url: container.prop('href'),
success: function(response) {
# Cargar modal(response)
},
error: function(response) {
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment