From 72f176d1f513b936483d37cf3b50f3c21a3d838e Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 27 Aug 2012 09:17:20 -0700 Subject: [PATCH] fixes #4748: document jquery dependency better --- docs/getting-started.html | 3 +++ docs/templates/pages/getting-started.mustache | 3 +++ 2 files changed, 6 insertions(+) diff --git a/docs/getting-started.html b/docs/getting-started.html index 63ed7e7e43..ee766eeb14 100644 --- a/docs/getting-started.html +++ b/docs/getting-started.html @@ -144,6 +144,7 @@ └── README.md

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 (bootstrap.*), as well as compiled and minified CSS and JS (bootstrap.min.*). The image files are compressed using ImageOptim, a Mac app for compressing PNGs.

+

Please note that all JavaScript plugins require jQuery to be included.

@@ -208,6 +209,7 @@ </head> <body> <h1>Hello, world!</h1> + <script src="http://code.jquery.com/jquery-latest.js"></script> </body> </html> @@ -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 3a68d4b668..ce133f3d9e 100644 --- a/docs/templates/pages/getting-started.mustache +++ b/docs/templates/pages/getting-started.mustache @@ -73,6 +73,7 @@ └── README.md

{{_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 (bootstrap.*), as well as compiled and minified CSS and JS (bootstrap.min.*). The image files are compressed using ImageOptim, a Mac app for compressing PNGs.{{/i}}

+

{{_i}}Please note that all JavaScript plugins require jQuery to be included.{{/i}}

@@ -137,6 +138,7 @@ </head> <body> <h1>Hello, world!</h1> + <script src="http://code.jquery.com/jquery-latest.js"></script> </body> </html> @@ -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>