diff options
| author | Mark Otto <[email protected]> | 2012-03-27 09:14:39 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-03-27 09:14:39 -0700 |
| commit | 155a7c10675c907e5407c2b78cc83b41b90b15ff (patch) | |
| tree | f84d34fac624297f1a70cfebb350ecea42a3327d /docs/components.html | |
| parent | 917f11e6799ddd43b439ce1f7a10c1a7360bcf3b (diff) | |
| parent | 5d2062a3ccb0fed4901fc9f312c961d042f569bf (diff) | |
| download | bootstrap-155a7c10675c907e5407c2b78cc83b41b90b15ff.tar.xz bootstrap-155a7c10675c907e5407c2b78cc83b41b90b15ff.zip | |
Merge pull request #2817 from andriijas/2.0.3-wip
Finish of a.close to button.close
Diffstat (limited to 'docs/components.html')
| -rw-r--r-- | docs/components.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/components.html b/docs/components.html index 5df760459..7854df523 100644 --- a/docs/components.html +++ b/docs/components.html @@ -1879,8 +1879,10 @@ <div class="span4"> <h2>Close icon</h2> <p>Use the generic close icon for dismissing content like modals and alerts.</p> - <p><a class="close" style="float: none;">×</a></p> -<pre class="prettyprint linenums"><a class="close">&times;</a></pre> + <p><button class="close" style="float: none;">×</button></p> +<pre class="prettyprint linenums"><button class="close">&times;</button></pre> + <p>iOS devices require an href="#" for click events if you rather use an anchor.</p> +<pre class="prettyprint linenums"><a class="close" href="#">&times;</a></pre> </div><!--/span--> </div><!--/row--> </section> |
