Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markotto@twitter.com>2012-06-21 10:46:29 +0400
committerMark Otto <markotto@twitter.com>2012-06-21 10:46:29 +0400
commit59153205b337df6900a681eb3b3681620bd20ec2 (patch)
tree91d5b42a7d98da16ce3eee437d89e13b0210a74e /docs/javascript.html
parent3875a9f31b278d67e3774fbf92972f9f400130aa (diff)
run make on js files
Diffstat (limited to 'docs/javascript.html')
-rw-r--r--docs/javascript.html8
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/javascript.html b/docs/javascript.html
index 33dac551b7..db6f8218aa 100644
--- a/docs/javascript.html
+++ b/docs/javascript.html
@@ -830,6 +830,9 @@ $('a[data-toggle="tab"]').on('shown', function (e) {
<h4>.tooltip('toggle')</h4>
<p>Toggles an element's tooltip.</p>
<pre class="prettyprint linenums">$('#element').tooltip('toggle')</pre>
+ <h4>.tooltip('destroy')</h4>
+ <p>Destroys an element's tooltip.</p>
+ <pre class="prettyprint linenums">$('#element').tooltip('destroy')</pre>
</section>
@@ -896,7 +899,7 @@ $('a[data-toggle="tab"]').on('shown', function (e) {
<td>trigger</td>
<td>string</td>
<td>'hover'</td>
- <td>how tooltip is triggered - hover | focus | manual</td>
+ <td>how popover is triggered - hover | focus | manual</td>
</tr>
<tr>
<td>title</td>
@@ -942,6 +945,9 @@ $('a[data-toggle="tab"]').on('shown', function (e) {
<h4>.popover('toggle')</h4>
<p>Toggles an elements popover.</p>
<pre class="prettyprint linenums">$('#element').popover('toggle')</pre>
+ <h4>.popover('destroy')</h4>
+ <p>Destroys an element's popover.</p>
+ <pre class="prettyprint linenums">$('#element').popover('destroy')</pre>
</section>