Fixes link formatting to Turbo

Signed-off-by: Stephan Kämper <the.tester@seasidetesting.com>
This commit is contained in:
Stephan Kämper 2022-01-02 12:19:30 +01:00
parent 2bfcd8b025
commit 70988822ba
No known key found for this signature in database
GPG Key ID: 37938238212FB264
1 changed files with 1 additions and 1 deletions

View File

@ -1312,7 +1312,7 @@ In the above code, we're passing the `data` attribute with some options to `link
The `turbo_method: :delete` option causes the link to make a `DELETE` request instead The `turbo_method: :delete` option causes the link to make a `DELETE` request instead
of a `GET` request. The `turbo_confirm: { confirm: "Are you sure?" }` option causes a of a `GET` request. The `turbo_confirm: { confirm: "Are you sure?" }` option causes a
confirmation dialog to appear when the link is clicked. If the user cancels the confirmation dialog to appear when the link is clicked. If the user cancels the
dialog, the request is aborted. Both of these options are powered by (Turbo)[https://turbo.hotwired.dev/] dialog, the request is aborted. Both of these options are powered by [Turbo](https://turbo.hotwired.dev/)
called *Performing Visits*. The JavaScript file that called *Performing Visits*. The JavaScript file that
implements these behaviors is included by default in fresh Rails applications. implements these behaviors is included by default in fresh Rails applications.