Commit f194b9db authored by John Bennet Veloya's avatar John Bennet Veloya Committed by Patrick H. Lauke
Browse files

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

parent b9577a1c
3 merge requests!28721Hot test,!27561Adds font-weight-medium to font weight classes,!17021v4
Showing with 1 addition and 1 deletion
+1 -1
...@@ -67,8 +67,8 @@ Below is a _static_ modal example (meaning its `position` and `display` have bee ...@@ -67,8 +67,8 @@ Below is a _static_ modal example (meaning its `position` and `display` have bee
<p>Modal body text goes here.</p> <p>Modal body text goes here.</p>
</div> </div>
<div class="modal-footer"> <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-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div> </div>
</div> </div>
</div> </div>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment