diff options
| author | Mark Otto <[email protected]> | 2011-12-11 01:58:06 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-12-11 01:58:06 -0800 |
| commit | 401f84a7ec65996a8573671b2c17077f85e63e6f (patch) | |
| tree | 6ffecfe7c2b10ba92e2dd3d5dbb377570b9ea379 /docs/index.html | |
| parent | 95048c271eb4166a4e22ab1f0ff6d69bade7d62b (diff) | |
| download | bootstrap-401f84a7ec65996a8573671b2c17077f85e63e6f.tar.xz bootstrap-401f84a7ec65996a8573671b2c17077f85e63e6f.zip | |
center example sites in docs on mobile
Diffstat (limited to 'docs/index.html')
| -rw-r--r-- | docs/index.html | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/docs/index.html b/docs/index.html index 0a63c1910..55a75b1bf 100644 --- a/docs/index.html +++ b/docs/index.html @@ -54,7 +54,7 @@ <header class="jumbotron masthead"> <div class="inner"> <h1>Bootstrap,<br> from Twitter</h1> - <p class="lead">Bootstrap is a responsive frontend toolkit from Twitter designed to kickstart web development, complete with core HTML, CSS, and JS for grids, type, forms, navigation, and many more components.</p> + <p class="lead">Bootstrap is a responsive frontend toolkit from Twitter designed to kickstart web development, featuring HTML, CSS, and JS for dozens of base elements and common design components.</p> <p class="download-info"> <a href="https://github.com/twitter/bootstrap/" class="btn primary btn-large">Download on GitHub</a> <a href="./scaffolding.html" class="btn btn-large">Get started →</a> @@ -236,6 +236,15 @@ <script src="http://code.jquery.com/jquery-1.6.2.min.js"></script> <script type="text/javascript"> + // When ready... + window.addEventListener("load",function() { + // Set a timeout... + setTimeout(function(){ + // Hide the address bar! + window.scrollTo(0, 1); + }, 0); + }); + // NOT FINAL BY ANY MEANS, JUST MAH JANK CODE BRO $(document).ready(function() { $('.nav .active').click(function(e) { |
