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
@@ -26,15 +26,15 @@ const CLASS_NAME_POINTER_EVENT = 'pointer-event'
const SWIPE_THRESHOLD = 40
const Default = {
endCallback: null,
leftCallback: null,
rightCallback: null,
endCallback: null
rightCallback: null
}
const DefaultType = {
endCallback: '(function|null)',
leftCallback: '(function|null)',
rightCallback: '(function|null)',
endCallback: '(function|null)'
rightCallback: '(function|null)'
}
/**