Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorRohit Sharma <rohit2sharma95@gmail.com>2020-07-12 15:43:26 +0300
committerGitHub <noreply@github.com>2020-07-12 15:43:26 +0300
commit91c11d646538c634e24ea85c5f985b2f32f8fe96 (patch)
tree2e228b84c190afa09e0ac84eb7bd31874baee6f4 /js
parent37ef4e4b5ef7406d10009539a44ab7a340a1fb98 (diff)
toasts: make default duration 5s (#31109)
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
Diffstat (limited to 'js')
-rw-r--r--js/src/toast.js2
1 files changed, 1 insertions, 1 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"]'