Created
June 29, 2018 23:37
-
-
Save ckashby/f8f6ca3690ced0346ae636d3f3bfb9fd to your computer and use it in GitHub Desktop.
Test file to show Bootstrap 4.1.1 bug. Clicking on checkbox button's checkbox square is not toggling checkbox.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Load in Chrome Version 67.0.3396.87 (Official Build) (64-bit) on Mac OS 10.13.5 --> | |
<!-- Click on the white square in the button that is the checkbox. It will NOT toggle. Click on button toggles. --> | |
<div class="btn-group" data-toggle="buttons"> | |
<label class="btn btn-primary active"> | |
<input type="checkbox" checked autocomplete="off"> Checkbox 1 (pre-checked) | |
</label> | |
<label class="btn btn-primary"> | |
<input type="checkbox" autocomplete="off"> Checkbox 2 | |
</label> | |
<label class="btn btn-primary"> | |
<input type="checkbox" autocomplete="off"> Checkbox 3 | |
</label> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment