diff options
| author | Mark Otto <[email protected]> | 2012-03-25 18:03:30 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-03-25 18:03:30 -0700 |
| commit | 4893928310288d7bccb400017d333c6a49700046 (patch) | |
| tree | 7999a2a44fb178e0b2a7c306758376adc80956a6 /docs/components.html | |
| parent | 825227474b57c90181e9c1b43da952d01b6c1dc1 (diff) | |
| download | bootstrap-4893928310288d7bccb400017d333c6a49700046.tar.xz bootstrap-4893928310288d7bccb400017d333c6a49700046.zip | |
add back href for alerts in components docs to make close work on iphone
Diffstat (limited to 'docs/components.html')
| -rw-r--r-- | docs/components.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/components.html b/docs/components.html index e6b0bfc49..a78dabeba 100644 --- a/docs/components.html +++ b/docs/components.html @@ -1684,7 +1684,7 @@ <h3>Example alerts</h3> <p>Wrap your message and an optional close icon in a div with simple class.</p> <div class="alert"> - <a class="close" data-dismiss="alert">×</a> + <a class="close" data-dismiss="alert" href="#">×</a> <strong>Warning!</strong> Best check yo self, you're not looking too good. </div> <pre class="prettyprint linenums"> @@ -1695,7 +1695,7 @@ </pre> <p>Easily extend the standard alert message with two optional classes: <code>.alert-block</code> for more padding and text controls and <code>.alert-heading</code> for a matching heading.</p> <div class="alert alert-block"> - <a class="close" data-dismiss="alert">×</a> + <a class="close" data-dismiss="alert" href="#">×</a> <h4 class="alert-heading">Warning!</h4> <p>Best check yo self, you're not looking too good. Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.</p> </div> @@ -1714,7 +1714,7 @@ <div class="span4"> <h3>Error or danger</h3> <div class="alert alert-error"> - <a class="close" data-dismiss="alert">×</a> + <a class="close" data-dismiss="alert" href="#">×</a> <strong>Oh snap!</strong> Change a few things up and try submitting again. </div> <pre class="prettyprint linenums"> @@ -1726,7 +1726,7 @@ <div class="span4"> <h3>Success</h3> <div class="alert alert-success"> - <a class="close" data-dismiss="alert">×</a> + <a class="close" data-dismiss="alert" href="#">×</a> <strong>Well done!</strong> You successfully read this important alert message. </div> <pre class="prettyprint linenums"> @@ -1738,7 +1738,7 @@ <div class="span4"> <h3>Information</h3> <div class="alert alert-info"> - <a class="close" data-dismiss="alert">×</a> + <a class="close" data-dismiss="alert" href="#">×</a> <strong>Heads up!</strong> This alert needs your attention, but it's not super important. </div> <pre class="prettyprint linenums"> |
