Skip to content

Commit 0b75e2d

Browse files
committed
Merge branch 'master' into docs_derp
2 parents 9f44f17 + 007d61c commit 0b75e2d

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ module.exports = function (grunt) {
189189
},
190190
files: {
191191
'dist/css/<%= pkg.name %>.css': ['dist/css/<%= pkg.name %>.css'],
192-
'dist/css/<%= pkg.name %>-theme.css': ['dist/css/<%= pkg.name %>-theme.css'],
192+
'dist/css/<%= pkg.name %>-theme.css': ['dist/css/<%= pkg.name %>-theme.css']
193193
}
194194
}
195195
},

docs/getting-started.html

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,11 @@ <h2 id="whats-included-source">Bootstrap source code</h2>
9898
│ ├── css/
9999
│ ├── js/
100100
│ └── fonts/
101-
├── docs/assets/
102-
├── examples/
103-
└── *.html
101+
└── docs/
102+
└── examples/
104103
{% endhighlight %}
105104
</div>
106-
<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. <code>docs/assets/</code>, <code>examples/</code>, and all <code>*.html</code> files are for our documentation. Beyond that, any other included file provides support for packages, license information, and development.</p>
105+
<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>
107106

108107

109108
<!-- Template

docs/javascript.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1197,7 +1197,7 @@ <h4>Four directions</h4>
11971197

11981198
<div class="bs-callout bs-callout-warning">
11991199
<h4>Multiple-line links</h4>
1200-
<p>Sometimes you want to add a tooltip to a hyperlink that wraps multiple lines. The default behavior of the tooltip plugin is to center it horizontally and vertically. Add <code>white-space: nowrap;</code> to your anchors to avoid this.</p>
1200+
<p>Sometimes you want to add a popover to a hyperlink that wraps multiple lines. The default behavior of the popover plugin is to center it horizontally and vertically. Add <code>white-space: nowrap;</code> to your anchors to avoid this.</p>
12011201
</div>
12021202

12031203

@@ -1234,13 +1234,13 @@ <h3>Options</h3>
12341234
<td>placement</td>
12351235
<td>string | function</td>
12361236
<td>'right'</td>
1237-
<td>how to position the popover - top | bottom | left | right | auto.<br> When "auto" is specified, it will dynamically reorient the popover. For example, if placement is "auto left", the tooltip will display to the left when possible, otherwise it will display right.</td>
1237+
<td>how to position the popover - top | bottom | left | right | auto.<br> When "auto" is specified, it will dynamically reorient the popover. For example, if placement is "auto left", the popover will display to the left when possible, otherwise it will display right.</td>
12381238
</tr>
12391239
<tr>
12401240
<td>selector</td>
12411241
<td>string</td>
12421242
<td>false</td>
1243-
<td>if a selector is provided, tooltip objects will be delegated to the specified targets. In practice, this is used to enable dynamic HTML content to have popovers added. See <a href="https://github.com/twbs/bootstrap/issues/4215">this</a> and <a href="http://jsfiddle.net/fScua/">an informative example</a>.</td>
1243+
<td>if a selector is provided, popover objects will be delegated to the specified targets. In practice, this is used to enable dynamic HTML content to have popovers added. See <a href="https://github.com/twbs/bootstrap/issues/4215">this</a> and <a href="http://jsfiddle.net/fScua/">an informative example</a>.</td>
12441244
</tr>
12451245
<tr>
12461246
<td>trigger</td>

0 commit comments

Comments
 (0)