Disable smooth scroll by default
Browse files- src/config.ts +1 -1
src/config.ts
CHANGED
|
@@ -12,7 +12,7 @@ export function configure(config: Config = {}) {
|
|
| 12 |
animate: true,
|
| 13 |
allowClose: true,
|
| 14 |
opacity: 0.7,
|
| 15 |
-
smoothScroll:
|
| 16 |
...config,
|
| 17 |
};
|
| 18 |
}
|
|
|
|
| 12 |
animate: true,
|
| 13 |
allowClose: true,
|
| 14 |
opacity: 0.7,
|
| 15 |
+
smoothScroll: false,
|
| 16 |
...config,
|
| 17 |
};
|
| 18 |
}
|