aboutsummaryrefslogtreecommitdiff
path: root/docs/templates
diff options
context:
space:
mode:
authorPurwandi <[email protected]>2012-07-18 12:19:02 +0700
committerPurwandi <[email protected]>2012-07-18 12:19:02 +0700
commit51c9fa1697d5df631fe37f1147d9265e89e5f4f6 (patch)
tree5d88880bfdc54e243b42c9db9ef762a1db29d5d9 /docs/templates
parent6a663081a78b2810e7b3904949cfc5a91df81eff (diff)
downloadbootstrap-51c9fa1697d5df631fe37f1147d9265e89e5f4f6.tar.xz
bootstrap-51c9fa1697d5df631fe37f1147d9265e89e5f4f6.zip
Moved JS to bottom on extends page
Diffstat (limited to 'docs/templates')
-rw-r--r--docs/templates/pages/extend.mustache9
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/templates/pages/extend.mustache b/docs/templates/pages/extend.mustache
index 508bd7e15..e32833b0e 100644
--- a/docs/templates/pages/extend.mustache
+++ b/docs/templates/pages/extend.mustache
@@ -132,10 +132,11 @@
&lt;title&gt;Bootstrap 101 Template&lt;/title&gt;
&lt;!-- Bootstrap --&gt;
&lt;link href="public/css/bootstrap.min.css" rel="stylesheet"&gt;
- &lt;script src="public/js/bootstrap.min.js"&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;h1&gt;Hello, world!&lt;/h1&gt;
+ &lt;!-- Bootstrap --&gt;
+ &lt;script src="public/js/bootstrap.min.js"&gt;&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
@@ -148,13 +149,15 @@
&lt;title&gt;Bootstrap 101 Template&lt;/title&gt;
&lt;!-- Bootstrap --&gt;
&lt;link href="public/css/bootstrap.min.css" rel="stylesheet"&gt;
- &lt;script src="public/js/bootstrap.min.js"&gt;&lt;/script&gt;
&lt;!-- Project --&gt;
&lt;link href="public/css/application.css" rel="stylesheet"&gt;
- &lt;script src="public/js/application.js"&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;h1&gt;Hello, world!&lt;/h1&gt;
+ &lt;!-- Bootstrap --&gt;
+ &lt;script src="public/js/bootstrap.min.js"&gt;&lt;/script&gt;
+ &lt;!-- Project --&gt;
+ &lt;script src="public/js/application.js"&gt;&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>