Commit 3e54be9a authored by Mark Otto's avatar Mark Otto
Browse files

Merge branch 'master' into docs_derp

Conflicts:
	docs/components.html
parents 12dacee3 422bdc50
No related merge requests found
Showing with 6 additions and 5 deletions
+6 -5
...@@ -60,6 +60,9 @@ module.exports = function (grunt) { ...@@ -60,6 +60,9 @@ module.exports = function (grunt) {
}, },
test: { test: {
src: ['js/tests/unit/*.js'] src: ['js/tests/unit/*.js']
},
assets: {
src: ['docs/assets/js/application.js', 'docs/assets/js/customizer.js']
} }
}, },
......
...@@ -14,8 +14,7 @@ lead: "Over a dozen reusable components built to provide iconography, dropdowns, ...@@ -14,8 +14,7 @@ lead: "Over a dozen reusable components built to provide iconography, dropdowns,
</div> </div>
<h2 id="glyphicons-glyphs">Available glyphs</h2> <h2 id="glyphicons-glyphs">Available glyphs</h2>
<p>Includes 200 glyphs in font format from the Glyphicon Halflings set. <a href="http://glyphicons.com/">Glyphicons</a> Halflings are normally not available for free, but their creator has made them available for Bootstrap free of cost. As a thank you, we only ask that you to include a link back to <a href="http://glyphicons.com/">Glyphicons</a> whenever possible.</p> <p>Includes 200 glyphs in font format from the Glyphicon Halflings set. <a href="http://glyphicons.com/">Glyphicons</a> Halflings are normally not available for free, but their creator has made them available for Bootstrap free of cost. As a thank you, we only ask that you include a link back to <a href="http://glyphicons.com/">Glyphicons</a> whenever possible.</p>
<div class="bs-glyphicons"> <div class="bs-glyphicons">
<ul class="bs-glyphicons-list"> <ul class="bs-glyphicons-list">
{% for iconClassName in site.data.glyphicons %} {% for iconClassName in site.data.glyphicons %}
......
...@@ -2414,7 +2414,6 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline. ...@@ -2414,7 +2414,6 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<p class="bg-danger">Donec ullamcorper nulla non metus auctor fringilla.</p> <p class="bg-danger">Donec ullamcorper nulla non metus auctor fringilla.</p>
</div> </div>
{% highlight html %} {% highlight html %}
<p class="bg-muted">...</p>
<p class="bg-primary">...</p> <p class="bg-primary">...</p>
<p class="bg-success">...</p> <p class="bg-success">...</p>
<p class="bg-info">...</p> <p class="bg-info">...</p>
......
...@@ -101,8 +101,8 @@ bootstrap/ ...@@ -101,8 +101,8 @@ bootstrap/
└── docs/ └── docs/
└── examples/ └── examples/
{% endhighlight %} {% endhighlight %}
<p>The <code>less/</code>, <code>js/</code>, and <code>fonts/</code> are the source code for our CSS, JS, and icon fonts (respectively). The <code>dist/</code> folder includes everything listed in the precompiled download section above. The <code>docs/</code> folder includes the source code for our documentation, and <code>examples/</code> of Bootstrap usage. Beyond that, any other included file provides support for packages, license information, and development.</p>
</div> </div>
<p>The <code>less/</code>, <code>js/</code>, and <code>fonts/</code> are the source code for our CSS, JS, and icon fonts (respectively). The <code>dist/</code> folder includes everything listed in the precompiled download section above. The <code>docs/</code> folder includes the source code for our documentation, and <code>examples/</code> of Bootstrap usage. Beyond that, any other included file provides support for packages, license information, and development.</p>
<!-- Template <!-- Template
......
...@@ -211,7 +211,7 @@ ...@@ -211,7 +211,7 @@
// $.fn.offset doesn't round pixel values // $.fn.offset doesn't round pixel values
// so we use setOffset directly with our own function B-0 // so we use setOffset directly with our own function B-0
jQuery.offset.setOffset($tip[0], $.extend({ $.offset.setOffset($tip[0], $.extend({
using: function (props) { using: function (props) {
$tip.css({ $tip.css({
top: Math.round(props.top), top: Math.round(props.top),
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment