1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-21 04:41:36 +02:00

Move inline JS to application.js.

This commit is contained in:
XhmikosR
2019-07-17 11:29:30 +03:00
parent 9be99c9b34
commit e4dc6b84b1
2 changed files with 10 additions and 7 deletions

View File

@@ -14,13 +14,6 @@ Structurally, our `<input>`s and `<label>`s are sibling elements as opposed to a
Our checks use custom Bootstrap icons to indicate checked or indeterminate states.
<script>
document.addEventListener("DOMContentLoaded", function() {
var checkbox = document.getElementById("flexCheckIndeterminate");
checkbox.indeterminate = true;
});
</script>
## Checks
{{< example >}}