]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Replace ellipsis Unicode symbol with three dots. (#31774)
authorXhmikosR <xhmikosr@gmail.com>
Mon, 28 Sep 2020 12:01:25 +0000 (15:01 +0300)
committerGitHub <noreply@github.com>
Mon, 28 Sep 2020 12:01:25 +0000 (15:01 +0300)
scss/_functions.scss
site/content/docs/5.0/components/alerts.md

index 83eea1fbe30acef6d036c32b882f7602fe7830cd..fd72c98bfd37bf3d144655e2879bbd127e551890 100644 (file)
@@ -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;
 }
index 79eccab8846df6df15f2375528e965d057b53190..a2f701267d0269f6760101c83281974ddd83463e 100644 (file)
@@ -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 >}}