diff options
| author | Patrick Hayes <[email protected]> | 2017-03-23 21:16:06 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-03-23 21:16:06 -0700 |
| commit | e41316cd94ee5a6ba644575945f12e9fb16a50fb (patch) | |
| tree | d2ca8d15e2219516ae7c1b2cab2a70346cf2cb44 /docs/components | |
| parent | 3f247a42f2a113f9e04184987eae9019abcac778 (diff) | |
| download | bootstrap-e41316cd94ee5a6ba644575945f12e9fb16a50fb.tar.xz bootstrap-e41316cd94ee5a6ba644575945f12e9fb16a50fb.zip | |
Fix modal documentation (#22252)
The example code has the class `"modal fade"`, but the visible example has the class `"modal"`. `"fade"` appears to not work for modals that you do not intend to animate onto the page
Diffstat (limited to 'docs/components')
| -rw-r--r-- | docs/components/modal.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/components/modal.md b/docs/components/modal.md index 96a11e1a2..a4e28bcec 100644 --- a/docs/components/modal.md +++ b/docs/components/modal.md @@ -63,7 +63,7 @@ Below is a _static_ modal example (meaning its `position` and `display` have bee </div> {% highlight html %} -<div class="modal fade"> +<div class="modal"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> |
