]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix order of Save/Close buttons in modal code example (#25855)
authorJohn Bennet Veloya <bennetveloya@gmail.com>
Thu, 15 Mar 2018 22:18:30 +0000 (15:18 -0700)
committerPatrick H. Lauke <redux@splintered.co.uk>
Thu, 15 Mar 2018 22:18:30 +0000 (22:18 +0000)
docs/4.0/components/modal.md

index dc67b560222637de67e36df4070550a2f5b2409b..d4be8783afa6bffe2f72f48f2a944dea5f8b11af 100644 (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>