diff options
| author | Mark Otto <[email protected]> | 2012-08-27 09:17:20 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-08-27 09:17:20 -0700 |
| commit | 72f176d1f513b936483d37cf3b50f3c21a3d838e (patch) | |
| tree | 066984daa2799db16138c742648226f1908fd6f4 /docs/getting-started.html | |
| parent | 1b8f4f5bc5f72ada4395c40a70e645a09eac593c (diff) | |
| download | bootstrap-72f176d1f513b936483d37cf3b50f3c21a3d838e.tar.xz bootstrap-72f176d1f513b936483d37cf3b50f3c21a3d838e.zip | |
fixes #4748: document jquery dependency better
Diffstat (limited to 'docs/getting-started.html')
| -rw-r--r-- | docs/getting-started.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/getting-started.html b/docs/getting-started.html index 63ed7e7e4..ee766eeb1 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -144,6 +144,7 @@ └── README.md </pre> <p>This is the most basic form of Bootstrap: compiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (<code>bootstrap.*</code>), as well as compiled and minified CSS and JS (<code>bootstrap.min.*</code>). The image files are compressed using <a href="http://imageoptim.com/">ImageOptim</a>, a Mac app for compressing PNGs.</p> + <p>Please note that all JavaScript plugins require jQuery to be included.</p> </section> @@ -208,6 +209,7 @@ </head> <body> <h1>Hello, world!</h1> + <script src="http://code.jquery.com/jquery-latest.js"></script> </body> </html> </pre> @@ -222,6 +224,7 @@ </head> <body> <h1>Hello, world!</h1> + <script src="http://code.jquery.com/jquery-latest.js"></script> <script src="js/bootstrap.min.js"></script> </body> </html> |
