From 22f1cc44caa1eb8557fad4bbb1d652d486b56a52 Mon Sep 17 00:00:00 2001 From: Greg Raven Date: Tue, 22 Jan 2013 06:46:53 -0800 Subject: [PATCH] Update docs/templates/pages/getting-started.mustache Add meta tag for viewport in the ; revise the URL for the latest version of jQuery. --- docs/templates/pages/getting-started.mustache | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/templates/pages/getting-started.mustache b/docs/templates/pages/getting-started.mustache index 2eec7ff769..3e2134ea7f 100644 --- a/docs/templates/pages/getting-started.mustache +++ b/docs/templates/pages/getting-started.mustache @@ -134,10 +134,11 @@ <html> <head> <title>Bootstrap 101 Template</title> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <h1>Hello, world!</h1> - <script src="http://code.jquery.com/jquery-latest.js"></script> + <script src="http://code.jquery.com/jquery.js"></script> </body> </html> @@ -152,7 +153,7 @@ </head> <body> <h1>Hello, world!</h1> - <script src="http://code.jquery.com/jquery-latest.js"></script> + <script src="http://code.jquery.com/jquery.js"></script> <script src="js/bootstrap.min.js"></script> </body> </html>