From 9471ad7533fe96eff74955bb205116a303f91c0f Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Fri, 21 Aug 2015 00:43:34 +0900 Subject: Fix tether typo Fix tether typo --- docs/components/tooltips.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/components/tooltips.md') diff --git a/docs/components/tooltips.md b/docs/components/tooltips.md index 3881a8e03..4cf42dd4f 100644 --- a/docs/components/tooltips.md +++ b/docs/components/tooltips.md @@ -15,7 +15,7 @@ Inspired by the excellent Tipsy jQuery plugin written by Jason Frame. Tooltips a Things to know when using the tooltip plugin: -- Tooltips rely on on the 3rd party library [tehter](http://github.hubspot.com/tether/) for positioning. You must include [tether.min.js](https://github.com/HubSpot/tether/blob/master/dist/js/tether.min.js) before bootstrap.js in order for tooltips to work! +- Tooltips rely on on the 3rd party library [tether](http://github.hubspot.com/tether/) for positioning. You must include [tether.min.js](https://github.com/HubSpot/tether/blob/master/dist/js/tether.min.js) before bootstrap.js in order for tooltips to work! - Tooltips are opt-in for performance reasons, so **you must initialize them yourself**. - Tooltips with zero-length titles are never displayed. - Specify `container: 'body'` to avoid rendering problems in more complex components (like our input groups, button groups, etc). -- cgit v1.2.3 From 7fa1341b4785e4a7a7a2cf06edc1bcb60bd92d78 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Thu, 20 Aug 2015 22:12:14 -0700 Subject: tooltips.md: Fix capitalization of "Tether" --- docs/components/tooltips.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/components/tooltips.md') diff --git a/docs/components/tooltips.md b/docs/components/tooltips.md index 4cf42dd4f..1d44c3938 100644 --- a/docs/components/tooltips.md +++ b/docs/components/tooltips.md @@ -15,7 +15,7 @@ Inspired by the excellent Tipsy jQuery plugin written by Jason Frame. Tooltips a Things to know when using the tooltip plugin: -- Tooltips rely on on the 3rd party library [tether](http://github.hubspot.com/tether/) for positioning. You must include [tether.min.js](https://github.com/HubSpot/tether/blob/master/dist/js/tether.min.js) before bootstrap.js in order for tooltips to work! +- Tooltips rely on on the 3rd party library [Tether](http://github.hubspot.com/tether/) for positioning. You must include [tether.min.js](https://github.com/HubSpot/tether/blob/master/dist/js/tether.min.js) before bootstrap.js in order for tooltips to work! - Tooltips are opt-in for performance reasons, so **you must initialize them yourself**. - Tooltips with zero-length titles are never displayed. - Specify `container: 'body'` to avoid rendering problems in more complex components (like our input groups, button groups, etc). -- cgit v1.2.3 From 136e8a480683acdb394523313abaa927d842d86a Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Thu, 20 Aug 2015 22:13:39 -0700 Subject: tooltips.md: Fix capitalization of "Tether" more --- docs/components/tooltips.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/components/tooltips.md') diff --git a/docs/components/tooltips.md b/docs/components/tooltips.md index 1d44c3938..9b28a1eaa 100644 --- a/docs/components/tooltips.md +++ b/docs/components/tooltips.md @@ -220,13 +220,13 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap constraints Array 'hover focus' - An array of constraints - passed through to tether. For more information refer to tether's constraint docs. + An array of constraints - passed through to Tether. For more information refer to Tether's constraint docs. offsets string '0 0' - Offset of the popover relative to it's target. For more information refer to tether's offset docs. + Offset of the popover relative to it's target. For more information refer to Tether's offset docs. -- cgit v1.2.3 From 5404ed594610a5bfd51d4f4ed1de2fe02b7650f5 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Thu, 20 Aug 2015 22:16:16 -0700 Subject: Fix options link in Tooltip docs --- docs/components/tooltips.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/components/tooltips.md') diff --git a/docs/components/tooltips.md b/docs/components/tooltips.md index 9b28a1eaa..65bd2703b 100644 --- a/docs/components/tooltips.md +++ b/docs/components/tooltips.md @@ -264,7 +264,7 @@ Toggles an element's tooltip. **Returns to the caller before the tooltip has act #### .tooltip('destroy') -Hides and destroys an element's tooltip. Tooltips that use delegation (which are created using [the `selector` option](#tooltips-options)) cannot be individually destroyed on descendant trigger elements. +Hides and destroys an element's tooltip. Tooltips that use delegation (which are created using [the `selector` option](#options)) cannot be individually destroyed on descendant trigger elements. {% highlight js %}$('#element').tooltip('destroy'){% endhighlight %} -- cgit v1.2.3