diff options
| author | Mark Otto <[email protected]> | 2012-12-07 09:41:17 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-12-07 09:41:17 -0800 |
| commit | 2877f8457963f713539a1f80f14ba73c6ba91038 (patch) | |
| tree | 6792eec70c3b98e9685c8b9bab63064a176211b8 /docs/components.html | |
| parent | 306c1b49147c388b7c458a939989bf33d464a69d (diff) | |
| parent | 81679981c539338be9cba6c5650579ec796afb69 (diff) | |
| download | bootstrap-2877f8457963f713539a1f80f14ba73c6ba91038.tar.xz bootstrap-2877f8457963f713539a1f80f14ba73c6ba91038.zip | |
Merge pull request #6143 from Quy/2.2.2-wip
Escape ×
Diffstat (limited to 'docs/components.html')
| -rw-r--r-- | docs/components.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/components.html b/docs/components.html index 518924026..bd528866c 100644 --- a/docs/components.html +++ b/docs/components.html @@ -2069,16 +2069,16 @@ </div> <pre class="prettyprint linenums"> <div class="alert"> - <button type="button" class="close" data-dismiss="alert">×</button> + <button type="button" class="close" data-dismiss="alert">&times;</button> <strong>Warning!</strong> Best check yo self, you're not looking too good. </div> </pre> <h3>Dismiss buttons</h3> <p>Mobile Safari and Mobile Opera browsers, in addition to the <code>data-dismiss="alert"</code> attribute, require an <code>href="#"</code> for the dismissal of alerts when using an <code><a></code> tag.</p> - <pre class="prettyprint linenums"><a href="#" class="close" data-dismiss="alert">×</a></pre> + <pre class="prettyprint linenums"><a href="#" class="close" data-dismiss="alert">&times;</a></pre> <p>Alternatively, you may use a <code><button></code> element with the data attribute, which we have opted to do for our docs. When using <code><button></code>, you must include <code>type="button"</code> or your forms may not submit.</p> - <pre class="prettyprint linenums"><button type="button" class="close" data-dismiss="alert">×</button></pre> + <pre class="prettyprint linenums"><button type="button" class="close" data-dismiss="alert">&times;</button></pre> <h3>Dismiss alerts via JavaScript</h3> <p>Use the <a href="./javascript.html#alerts">alerts jQuery plugin</a> for quick and easy dismissal of alerts.</p> @@ -2098,7 +2098,7 @@ </div> <pre class="prettyprint linenums"> <div class="alert alert-block"> - <button type="button" class="close" data-dismiss="alert">×</button> + <button type="button" class="close" data-dismiss="alert">&times;</button> <h4>Warning!</h4> Best check yo self, you're not... </div> |
