diff options
| author | Mark Otto <[email protected]> | 2011-09-28 20:21:09 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-09-28 20:21:09 -0700 |
| commit | 2d81d65533ded88c76712e787edbd745d38e403e (patch) | |
| tree | a68898fb108608de600579a3aa939fbfc62862d4 /docs/index.html | |
| parent | 1b21d5e321ec77c6381becae2e2d7d1c4ab14d9a (diff) | |
| download | bootstrap-2d81d65533ded88c76712e787edbd745d38e403e.tar.xz bootstrap-2d81d65533ded88c76712e787edbd745d38e403e.zip | |
initial idea for handling closing of modals from whatever element you want with .js-dismiss class
Diffstat (limited to 'docs/index.html')
| -rw-r--r-- | docs/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/index.html b/docs/index.html index 857af2448..b24999c62 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1644,7 +1644,7 @@ <!-- Modal --> <div class="modal" style="position: relative; top: auto; left: auto; margin: 0 auto; z-index: 1"> <div class="modal-header"> - <a href="#" class="close">×</a> + <a href="#" class="close js-dismiss">×</a> <h3>Modal Heading</h3> </div> <div class="modal-body"> @@ -1652,7 +1652,7 @@ </div> <div class="modal-footer"> <a href="#" class="btn primary">Primary</a> - <a href="#" class="btn secondary">Secondary</a> + <a href="#" class="btn">Secondary</a> </div> </div> </div> |
