From: XhmikosR Date: Mon, 28 Sep 2020 12:01:25 +0000 (+0300) Subject: Replace ellipsis Unicode symbol with three dots. (#31774) X-Git-Tag: v5.0.0-alpha2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec812dcf80f83ad59accb5e7db51e1d09c1819cf;p=thirdparty%2Fbootstrap.git Replace ellipsis Unicode symbol with three dots. (#31774) --- diff --git a/scss/_functions.scss b/scss/_functions.scss index 83eea1fbe3..fd72c98bfd 100644 --- a/scss/_functions.scss +++ b/scss/_functions.scss @@ -114,7 +114,7 @@ $_luminance-list: .0008 .001 .0011 .0013 .0015 .0017 .002 .0022 .0025 .0027 .003 } } - @warn "Found no color leading to #{$min-contrast-ratio}:1 contrast ratio against #{$background}…"; + @warn "Found no color leading to #{$min-contrast-ratio}:1 contrast ratio against #{$background}..."; @return $max-ratio-color; } diff --git a/site/content/docs/5.0/components/alerts.md b/site/content/docs/5.0/components/alerts.md index 79eccab884..a2f701267d 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 >}}