aboutsummaryrefslogtreecommitdiff
path: root/site/content/docs
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2020-09-28 15:01:25 +0300
committerGitHub <[email protected]>2020-09-28 15:01:25 +0300
commitec812dcf80f83ad59accb5e7db51e1d09c1819cf (patch)
treef56eb0634af6402a7a36c67c66752a5446e60dfd /site/content/docs
parentc30b6df54bcaffa52a5e9f4bf117aa5dcd7b7a7e (diff)
downloadbootstrap-ec812dcf80f83ad59accb5e7db51e1d09c1819cf.tar.xz
bootstrap-ec812dcf80f83ad59accb5e7db51e1d09c1819cf.zip
Replace ellipsis Unicode symbol with three dots. (#31774)
Diffstat (limited to 'site/content/docs')
-rw-r--r--site/content/docs/5.0/components/alerts.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/site/content/docs/5.0/components/alerts.md b/site/content/docs/5.0/components/alerts.md
index 79eccab88..a2f701267 100644
--- a/site/content/docs/5.0/components/alerts.md
+++ b/site/content/docs/5.0/components/alerts.md
@@ -177,8 +177,8 @@ Bootstrap's alert plugin exposes a few events for hooking into alert functionali
{{< highlight js >}}
var myAlert = document.getElementById('myAlert')
myAlert.addEventListener('closed.bs.alert', function () {
- // do something … for instance, explicitly move focus to the most appropriate element,
+ // do something, for instance, explicitly move focus to the most appropriate element,
// so it doesn't get lost/reset to the start of the page
- // document.getElementById('…').focus()
+ // document.getElementById('...').focus()
})
{{< /highlight >}}