aboutsummaryrefslogtreecommitdiff
path: root/javascript.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-08-15 12:35:46 -0700
committerMark Otto <[email protected]>2013-08-15 12:35:46 -0700
commit834cbce9b75232d8dd3fcfb2fa86ffef02c9cfd8 (patch)
tree19d196ee87a9fbd16b1aba62151baec49ecaccca /javascript.html
parent33edb95b9862ef0c0edea73ca931fcbbeb1b5b6d (diff)
parentbc89c06b6c8cdf0d77a8635c32650df4fafc4b04 (diff)
downloadbootstrap-834cbce9b75232d8dd3fcfb2fa86ffef02c9cfd8.tar.xz
bootstrap-834cbce9b75232d8dd3fcfb2fa86ffef02c9cfd8.zip
Merge branch '3.0.0-wip' of github.com:twbs/bootstrap into 3.0.0-wip
Diffstat (limited to 'javascript.html')
-rw-r--r--javascript.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/javascript.html b/javascript.html
index cbbb35368..2889ac084 100644
--- a/javascript.html
+++ b/javascript.html
@@ -588,7 +588,7 @@ $('body').scrollspy({ target: '#navbar-example' })
{% highlight js %}
$('[data-spy="scroll"]').each(function () {
var $spy = $(this).scrollspy('refresh')
-});
+})
{% endhighlight %}
@@ -731,7 +731,7 @@ $('#myTab li:eq(2) a').tab('show') // Select third tab (0-indexed)
<script>
$(function () {
- $('#myTab a:last').tab('show');
+ $('#myTab a:last').tab('show')
})
</script>
{% endhighlight %}