From 5e35da6a9a40f4a4ecc20d2a759c8b271f9d05ca Mon Sep 17 00:00:00 2001 From: flavio-b Date: Fri, 4 Oct 2024 00:17:01 -0700 Subject: [PATCH] Mention that `data-turbo-method` is needed for `data-turbo-confirm` on links Small update to the example on how to use `data-turbo-confirm` with links. --- _source/handbook/02_drive.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_source/handbook/02_drive.md b/_source/handbook/02_drive.md index 0ca0f15..29cdc15 100644 --- a/_source/handbook/02_drive.md +++ b/_source/handbook/02_drive.md @@ -140,10 +140,10 @@ You should also consider that for accessibility reasons, it's better to use actu ## Requiring Confirmation for a Visit -Decorate links with `data-turbo-confirm`, and confirmation will be required for a visit to proceed. +Decorate links with both `data-turbo-confirm` and `data-turbo-method`, and confirmation will be required for a visit to proceed. ```html -Back to articles +Back to articles Delete the article ```