2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-30 15:24:08 +03:00

Re-ordering js default objects

This commit is contained in:
louismaxime.piton
2022-05-19 15:35:44 +02:00
committed by Mark Otto
parent 824c5a077b
commit c137d11aa2
10 changed files with 71 additions and 71 deletions
+4 -4
View File
@@ -24,13 +24,13 @@ const TAB_NAV_FORWARD = 'forward'
const TAB_NAV_BACKWARD = 'backward'
const Default = {
trapElement: null, // The element to trap focus inside of
autofocus: true
autofocus: true,
trapElement: null // The element to trap focus inside of
}
const DefaultType = {
trapElement: 'element',
autofocus: 'boolean'
autofocus: 'boolean',
trapElement: 'element'
}
/**