0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-28 20:52:21 +01:00

Fix order of Save/Close buttons in modal code example (#25855)

This commit is contained in:
John Bennet Veloya 2018-03-15 15:18:30 -07:00 committed by Patrick H. Lauke
parent b9577a1cf7
commit f194b9db75

View File

@ -67,8 +67,8 @@ Below is a _static_ modal example (meaning its `position` and `display` have bee
<p>Modal body text goes here.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary">Save changes</button>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>