0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00

Replace ellipsis Unicode symbol with three dots. (#31774)

This commit is contained in:
XhmikosR 2020-09-28 15:01:25 +03:00 committed by GitHub
parent c30b6df54b
commit ec812dcf80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View 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; @return $max-ratio-color;
} }

View File

@ -177,8 +177,8 @@ Bootstrap's alert plugin exposes a few events for hooking into alert functionali
{{< highlight js >}} {{< highlight js >}}
var myAlert = document.getElementById('myAlert') var myAlert = document.getElementById('myAlert')
myAlert.addEventListener('closed.bs.alert', function () { 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 // so it doesn't get lost/reset to the start of the page
// document.getElementById('').focus() // document.getElementById('...').focus()
}) })
{{< /highlight >}} {{< /highlight >}}