Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2013-01-16 22:28:02 +0400
committerMark Otto <markdotto@gmail.com>2013-01-16 22:28:02 +0400
commitb80bf2c138ebf7853ea6fcc27e788bd64ea9b852 (patch)
tree3d54842322d2d07ca094622523b3cd8413217f0b /docs
parent38c5c13d38ee95944b273b36ac77288d220f7cf1 (diff)
parent598e9e6f13f52249e5158c427f70d20b7c4622f4 (diff)
Merge pull request #6600 from Yohn/patch-12
added missing class to doc example
Diffstat (limited to 'docs')
-rw-r--r--docs/components.html2
-rw-r--r--docs/templates/pages/components.mustache2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/components.html b/docs/components.html
index 7a670998d3..e8b74cf825 100644
--- a/docs/components.html
+++ b/docs/components.html
@@ -177,7 +177,7 @@
<pre class="prettyprint linenums">
&lt;ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu"&gt;
&lt;li&gt;&lt;a tabindex="-1" href="#"&gt;Regular link&lt;/a&gt;&lt;/li&gt;
- &lt;li&gt;&lt;a tabindex="-1" href="#"&gt;Disabled link&lt;/a&gt;&lt;/li&gt;
+ &lt;li class="disabled"&gt;&lt;a tabindex="-1" href="#"&gt;Disabled link&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a tabindex="-1" href="#"&gt;Another link&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre>
diff --git a/docs/templates/pages/components.mustache b/docs/templates/pages/components.mustache
index bdd918da9b..53ab3d2a62 100644
--- a/docs/templates/pages/components.mustache
+++ b/docs/templates/pages/components.mustache
@@ -106,7 +106,7 @@
<pre class="prettyprint linenums">
&lt;ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu"&gt;
&lt;li&gt;&lt;a tabindex="-1" href="#"&gt;{{_i}}Regular link{{/i}}&lt;/a&gt;&lt;/li&gt;
- &lt;li&gt;&lt;a tabindex="-1" href="#"&gt;{{_i}}Disabled link{{/i}}&lt;/a&gt;&lt;/li&gt;
+ &lt;li class="disabled"&gt;&lt;a tabindex="-1" href="#"&gt;{{_i}}Disabled link{{/i}}&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a tabindex="-1" href="#"&gt;{{_i}}Another link{{/i}}&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre>