Skip to content

Instantly share code, notes, and snippets.

@balvig
Created October 30, 2019 02:51
Show Gist options
  • Save balvig/357f6600e51045810015c47724e9c9aa to your computer and use it in GitHub Desktop.
Save balvig/357f6600e51045810015c47724e9c9aa to your computer and use it in GitHub Desktop.
<!-- layouts/application.html.erb -->
<div data-controller="modal">
<%= link_to "Get Started", new_authentication_path, data-action="modal#show" %>
<div data-target="modal.dialog"></div>
</div>
export default class extends Controller {
static targets = ["dialog"]
show(event) {
fetch(event.currentTarget.href).then(data => {
this.dialogTarget.innerHTML = data;
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment