From 91c11d646538c634e24ea85c5f985b2f32f8fe96 Mon Sep 17 00:00:00 2001 From: Rohit Sharma <rohit2sharma95@gmail.com> Date: Sun, 12 Jul 2020 18:13:26 +0530 Subject: [PATCH] toasts: make default duration 5s (#31109) Co-authored-by: XhmikosR <xhmikosr@gmail.com> --- js/src/toast.js | 2 +- site/content/docs/5.0/components/toasts.md | 2 +- site/content/docs/5.0/migration.md | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/js/src/toast.js b/js/src/toast.js index cca6d553b0..f977c7ee3d 100644 --- a/js/src/toast.js +++ b/js/src/toast.js @@ -48,7 +48,7 @@ const DefaultType = { const Default = { animation: true, autohide: true, - delay: 500 + delay: 5000 } const SELECTOR_DATA_DISMISS = '[data-dismiss="toast"]' diff --git a/site/content/docs/5.0/components/toasts.md b/site/content/docs/5.0/components/toasts.md index 50d09478c8..ee8eba4585 100644 --- a/site/content/docs/5.0/components/toasts.md +++ b/site/content/docs/5.0/components/toasts.md @@ -309,7 +309,7 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap <td><code>delay</code></td> <td>number</td> <td> - <code>500</code> + <code>5000</code> </td> <td>Delay hiding the toast (ms)</td> </tr> diff --git a/site/content/docs/5.0/migration.md b/site/content/docs/5.0/migration.md index 093e998195..fc8a8dc61f 100644 --- a/site/content/docs/5.0/migration.md +++ b/site/content/docs/5.0/migration.md @@ -24,6 +24,10 @@ toc: true - Renamed `whiteList` option to `allowList` +#### Toasts + +- Make default toast duration 5 seconds + #### Tooltips - Renamed `whiteList` option to `allowList` -- GitLab