diff options
| author | Quy Ton <[email protected]> | 2012-12-20 21:38:53 -0800 |
|---|---|---|
| committer | Quy Ton <[email protected]> | 2012-12-20 21:38:53 -0800 |
| commit | a27bf30f0d7a42f356d661db9835710bc8917067 (patch) | |
| tree | 77806b2e77654090694936a9a22e15f6bd7ffba1 /docs | |
| parent | c1e82732cf4c87e0e73458feaf3b7c76e1ea489e (diff) | |
| download | bootstrap-a27bf30f0d7a42f356d661db9835710bc8917067.tar.xz bootstrap-a27bf30f0d7a42f356d661db9835710bc8917067.zip | |
Miscellaneous changes to docs
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/base-css.html | 3 | ||||
| -rw-r--r-- | docs/components.html | 2 | ||||
| -rw-r--r-- | docs/javascript.html | 2 | ||||
| -rw-r--r-- | docs/templates/pages/base-css.mustache | 3 | ||||
| -rw-r--r-- | docs/templates/pages/components.mustache | 2 | ||||
| -rw-r--r-- | docs/templates/pages/javascript.mustache | 2 |
6 files changed, 6 insertions, 8 deletions
diff --git a/docs/base-css.html b/docs/base-css.html index 7cf9f41b3..d0fdbeb72 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -527,7 +527,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped <p>Add any of the following classes to the <code>.table</code> base class.</p> <h3><code>.table-striped</code></h3> - <p>Adds zebra-striping to any table row within the <code><tbody></code> via the <code>:nth-child</code> CSS selector (not available in IE7-IE8).</p> + <p>Adds zebra-striping to any table row within the <code><tbody></code> via the <code>:nth-child</code> CSS selector (not available in IE7-8).</p> <div class="bs-docs-example"> <table class="table table-striped"> <thead> @@ -2041,7 +2041,6 @@ For example, <code>&lt;section&gt;</code> should be wrapped <pre class="prettyprint linenums"> <div class="btn-toolbar"> <div class="btn-group"> - <a class="btn" href="#"><i class="icon-align-left"></i></a> <a class="btn" href="#"><i class="icon-align-center"></i></a> <a class="btn" href="#"><i class="icon-align-right"></i></a> diff --git a/docs/components.html b/docs/components.html index bd528866c..10ffd2e0c 100644 --- a/docs/components.html +++ b/docs/components.html @@ -2488,7 +2488,7 @@ <p><button class="close" style="float: none;">×</button></p> </div> <pre class="prettyprint linenums"><button class="close">&times;</button></pre> - <p>iOS devices require an href="#" for click events if you would rather use an anchor.</p> + <p>iOS devices require an <code>href="#"</code> for click events if you would rather use an anchor.</p> <pre class="prettyprint linenums"><a class="close" href="#">&times;</a></pre> <h2>Helper classes</h2> diff --git a/docs/javascript.html b/docs/javascript.html index a10360bf3..9f574e4f3 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -161,7 +161,7 @@ $('#myModal').on('show', function (e) { <h1>Transitions <small>bootstrap-transition.js</small></h1> </div> <h3>About transitions</h3> - <p>For simple transition effects, include bootstrap-transition.js once alongside the other JS files. If you're using the compiled (or minified) bootstrap.js, there is no need to include this—it's already there.</p> + <p>For simple transition effects, include <strong>bootstrap-transition.js</strong> once alongside the other JS files. If you're using the compiled (or minified) <strong>bootstrap.js</strong>, there is no need to include this—it's already there.</p> <h3>Use cases</h3> <p>A few examples of the transition plugin:</p> <ul> diff --git a/docs/templates/pages/base-css.mustache b/docs/templates/pages/base-css.mustache index 4ae837d34..efb69bdae 100644 --- a/docs/templates/pages/base-css.mustache +++ b/docs/templates/pages/base-css.mustache @@ -464,7 +464,7 @@ <p>{{_i}}Add any of the following classes to the <code>.table</code> base class.{{/i}}</p> <h3><code>{{_i}}.table-striped{{/i}}</code></h3> - <p>{{_i}}Adds zebra-striping to any table row within the <code><tbody></code> via the <code>:nth-child</code> CSS selector (not available in IE7-IE8).{{/i}}</p> + <p>{{_i}}Adds zebra-striping to any table row within the <code><tbody></code> via the <code>:nth-child</code> CSS selector (not available in IE7-8).{{/i}}</p> <div class="bs-docs-example"> <table class="table table-striped"> <thead> @@ -1978,7 +1978,6 @@ <pre class="prettyprint linenums"> <div class="btn-toolbar"> <div class="btn-group"> - <a class="btn" href="#"><i class="icon-align-left"></i></a> <a class="btn" href="#"><i class="icon-align-center"></i></a> <a class="btn" href="#"><i class="icon-align-right"></i></a> diff --git a/docs/templates/pages/components.mustache b/docs/templates/pages/components.mustache index 96896b5b3..632ceda2f 100644 --- a/docs/templates/pages/components.mustache +++ b/docs/templates/pages/components.mustache @@ -2417,7 +2417,7 @@ <p><button class="close" style="float: none;">×</button></p> </div> <pre class="prettyprint linenums"><button class="close">&times;</button></pre> - <p>{{_i}}iOS devices require an href="#" for click events if you would rather use an anchor.{{/i}}</p> + <p>{{_i}}iOS devices require an <code>href="#"</code> for click events if you would rather use an anchor.{{/i}}</p> <pre class="prettyprint linenums"><a class="close" href="#">&times;</a></pre> <h2>{{_i}}Helper classes{{/i}}</h2> diff --git a/docs/templates/pages/javascript.mustache b/docs/templates/pages/javascript.mustache index de7977667..187372621 100644 --- a/docs/templates/pages/javascript.mustache +++ b/docs/templates/pages/javascript.mustache @@ -90,7 +90,7 @@ $('#myModal').on('show', function (e) { <h1>{{_i}}Transitions{{/i}} <small>bootstrap-transition.js</small></h1> </div> <h3>{{_i}}About transitions{{/i}}</h3> - <p>{{_i}}For simple transition effects, include bootstrap-transition.js once alongside the other JS files. If you're using the compiled (or minified) bootstrap.js, there is no need to include this—it's already there.{{/i}}</p> + <p>{{_i}}For simple transition effects, include <strong>bootstrap-transition.js</strong> once alongside the other JS files. If you're using the compiled (or minified) <strong>bootstrap.js</strong>, there is no need to include this—it's already there.{{/i}}</p> <h3>{{_i}}Use cases{{/i}}</h3> <p>{{_i}}A few examples of the transition plugin:{{/i}}</p> <ul> |
