From 0cc4fe6ee37fd63f35288451e408a7a891a90079 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Thu, 2 Jan 2014 15:46:13 +0100 Subject: [PATCH 1/5] Drop trailling comma No need for it. --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 93831b3351..9a2a5754e4 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -189,7 +189,7 @@ module.exports = function (grunt) { }, files: { 'dist/css/<%= pkg.name %>.css': ['dist/css/<%= pkg.name %>.css'], - 'dist/css/<%= pkg.name %>-theme.css': ['dist/css/<%= pkg.name %>-theme.css'], + 'dist/css/<%= pkg.name %>-theme.css': ['dist/css/<%= pkg.name %>-theme.css'] } } }, From a53779d020fb596b14621a5682007168b51a3482 Mon Sep 17 00:00:00 2001 From: Quy Ton Date: Fri, 3 Jan 2014 10:55:06 -0800 Subject: [PATCH 2/5] Refer to popovers instead of tooltips. --- docs/javascript.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/javascript.html b/docs/javascript.html index 312ca908db..3bceb67512 100644 --- a/docs/javascript.html +++ b/docs/javascript.html @@ -1197,7 +1197,7 @@ sagittis lacus vel augue laoreet rutrum faucibus.">

Multiple-line links

-

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 white-space: nowrap; to your anchors to avoid this.

+

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 white-space: nowrap; to your anchors to avoid this.

@@ -1234,13 +1234,13 @@ sagittis lacus vel augue laoreet rutrum faucibus."> placement string | function 'right' - how to position the popover - top | bottom | left | right | auto.
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. + how to position the popover - top | bottom | left | right | auto.
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. selector string false - 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 this and an informative example. + 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 this and an informative example. trigger From 63df2ced6ebb173606cf53a84e8f02508823ca1f Mon Sep 17 00:00:00 2001 From: Quy Ton Date: Fri, 3 Jan 2014 11:42:27 -0800 Subject: [PATCH 3/5] Update source code download structure --- docs/getting-started.html | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/getting-started.html b/docs/getting-started.html index 4a4ab1211c..cdf614ecff 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -102,12 +102,13 @@ bootstrap/ │ ├── css/ │ ├── js/ │ └── fonts/ -├── docs/assets/ -├── examples/ -└── *.html +└── docs/ + ├── assets/ + ├── examples/ + └── *.html {% endhighlight %} -

The less/, js/, and fonts/ are the source code for our CSS, JS, and icon fonts (respectively). The dist/ folder includes everything listed in the precompiled download section above. docs/assets/, examples/, and all *.html files are for our documentation. Beyond that, any other included file provides support for packages, license information, and development.

+

The less/, js/, and fonts/ are the source code for our CSS, JS, and icon fonts (respectively). The dist/ folder includes everything listed in the precompiled download section above. The docs/ folder includes assets/, examples/, and all *.html files are for our documentation. Beyond that, any other included file provides support for packages, license information, and development.