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 | |
| parent | 1b8f4f5bc5f72ada4395c40a70e645a09eac593c (diff) | |
| download | bootstrap-72f176d1f513b936483d37cf3b50f3c21a3d838e.tar.xz bootstrap-72f176d1f513b936483d37cf3b50f3c21a3d838e.zip | |
fixes #4748: document jquery dependency better
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/getting-started.html | 3 | ||||
| -rw-r--r-- | docs/templates/pages/getting-started.mustache | 3 |
2 files changed, 6 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> diff --git a/docs/templates/pages/getting-started.mustache b/docs/templates/pages/getting-started.mustache index 3a68d4b66..ce133f3d9 100644 --- a/docs/templates/pages/getting-started.mustache +++ b/docs/templates/pages/getting-started.mustache @@ -73,6 +73,7 @@ └── README.md </pre> <p>{{_i}}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.{{/i}}</p> + <p>{{_i}}Please note that all JavaScript plugins require jQuery to be included.{{/i}}</p> </section> @@ -137,6 +138,7 @@ </head> <body> <h1>Hello, world!</h1> + <script src="http://code.jquery.com/jquery-latest.js"></script> </body> </html> </pre> @@ -151,6 +153,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> |
