aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-01-16 10:28:02 -0800
committerMark Otto <[email protected]>2013-01-16 10:28:02 -0800
commitb80bf2c138ebf7853ea6fcc27e788bd64ea9b852 (patch)
tree3d54842322d2d07ca094622523b3cd8413217f0b
parent38c5c13d38ee95944b273b36ac77288d220f7cf1 (diff)
parent598e9e6f13f52249e5158c427f70d20b7c4622f4 (diff)
downloadbootstrap-b80bf2c138ebf7853ea6fcc27e788bd64ea9b852.tar.xz
bootstrap-b80bf2c138ebf7853ea6fcc27e788bd64ea9b852.zip
Merge pull request #6600 from Yohn/patch-12
added missing class to doc example
-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 7a670998d..e8b74cf82 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 bdd918da9..53ab3d2a6 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>