diff options
| author | Mark Otto <[email protected]> | 2011-12-09 12:10:01 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-12-09 12:10:01 -0800 |
| commit | 7b810bf9a617e1f02e073aafcc70857dc915ee59 (patch) | |
| tree | 9898391c02242217baf424a9b14e1272f652d654 /docs/index.html | |
| parent | 1d1805ee5cb188f0c70b6a27e227ea6caca62c8e (diff) | |
| download | bootstrap-7b810bf9a617e1f02e073aafcc70857dc915ee59.tar.xz bootstrap-7b810bf9a617e1f02e073aafcc70857dc915ee59.zip | |
update js in footer, add max-width to img
Diffstat (limited to 'docs/index.html')
| -rw-r--r-- | docs/index.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/index.html b/docs/index.html index daf7eb308..0598fc449 100644 --- a/docs/index.html +++ b/docs/index.html @@ -4,6 +4,7 @@ <meta charset="utf-8"> <title>Bootstrap, from Twitter</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="description" content=""> <meta name="author" content=""> @@ -200,9 +201,9 @@ <script type="text/javascript"> // NOT FINAL BY ANY MEANS, JUST MAH JANK CODE BRO $(document).ready(function() { - $('.nav .active a').click(function(e) { + $('.nav .active').click(function(e) { e.preventDefault(); - $(this).parent().siblings().toggle(); + $(this).siblings().toggle(); }); }); </script> |
