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
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-12-04 17:00:21 +0300
committerGitHub <noreply@github.com>2020-12-04 17:00:21 +0300
commit321ee7a1ad8584c1bfe604b5d16950d6051d52a4 (patch)
treec5a0f619153e540bbe8213d9085e14489eb72c1e
parent85acd96e31c450e1f20fbb079b3fabe4754fa803 (diff)
cheatsheet.js: use `event` instead of `e` (#32335)
-rw-r--r--site/content/docs/5.0/examples/cheatsheet/cheatsheet.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/site/content/docs/5.0/examples/cheatsheet/cheatsheet.js b/site/content/docs/5.0/examples/cheatsheet/cheatsheet.js
index bafea8e924..541cf9350a 100644
--- a/site/content/docs/5.0/examples/cheatsheet/cheatsheet.js
+++ b/site/content/docs/5.0/examples/cheatsheet/cheatsheet.js
@@ -28,8 +28,8 @@
// Disable empty links
document.querySelectorAll('[href="#"]')
.forEach(function (link) {
- link.addEventListener('click', function (e) {
- e.preventDefault()
+ link.addEventListener('click', function (event) {
+ event.preventDefault()
})
})