aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorVic <[email protected]>2011-11-12 13:18:08 -0800
committerVic <[email protected]>2011-11-12 13:18:08 -0800
commit638211b8965e95a1ebf5a783747e1c292a4d3f90 (patch)
tree6bdd2ca900134755a9bc8deb6b7ecfa20cfe920b /docs
parent1f51ce058b97117cfc3811c9695fcbe6733b70ad (diff)
downloadbootstrap-638211b8965e95a1ebf5a783747e1c292a4d3f90.tar.xz
bootstrap-638211b8965e95a1ebf5a783747e1c292a4d3f90.zip
Fixes tab event selector in tabs example
Diffstat (limited to 'docs')
-rw-r--r--docs/javascript.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/javascript.html b/docs/javascript.html
index 858345d72..055be36c8 100644
--- a/docs/javascript.html
+++ b/docs/javascript.html
@@ -425,7 +425,7 @@ $('#my-modal').bind('hidden', function () {
</table>
<pre class="prettyprint linenums">
-$('#.tabs').bind('change', function (e) {
+$('.tabs a').bind('change', function (e) {
e.target // activated tab
e.relatedTarget // previous tab
})</pre>