diff options
| author | XhmikosR <[email protected]> | 2022-11-12 10:09:36 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-11-12 10:09:36 +0200 |
| commit | 5208dd10c4f43b304ebeb75dcf508e016515a248 (patch) | |
| tree | bb28a065c4e34eda5620ed3cd5bd83312c553e87 /js/tests/visual/carousel.html | |
| parent | 21e036bf137f393827ddb433af136312e6278961 (diff) | |
| download | bootstrap-5208dd10c4f43b304ebeb75dcf508e016515a248.tar.xz bootstrap-5208dd10c4f43b304ebeb75dcf508e016515a248.zip | |
ESLint: enable prefer-template rule (#37484)
Diffstat (limited to 'js/tests/visual/carousel.html')
| -rw-r--r-- | js/tests/visual/carousel.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tests/visual/carousel.html b/js/tests/visual/carousel.html index 153c86604..1b2de5291 100644 --- a/js/tests/visual/carousel.html +++ b/js/tests/visual/carousel.html @@ -55,7 +55,7 @@ // Test to show that transition-duration can be changed with css carousel.addEventListener('slid.bs.carousel', event => { t1 = performance.now() - console.log('transition-duration took ' + (t1 - t0) + 'ms, slid at ' + event.timeStamp) + console.log(`transition-duration took ${t1 - t0}ms, slid at ${event.timeStamp}`) }) carousel.addEventListener('slide.bs.carousel', () => { t0 = performance.now() |
