-
How to use it
-
Use this option to make full use of Bootstrap’s Less variables, mixins, and nesting in CSS via javascript in your browser.
+
{{_i}}How to use it{{/i}}
+
{{_i}}Use this option to make full use of Bootstrap’s Less variables, mixins, and nesting in CSS via javascript in your browser.{{/i}}
<link rel="stylesheet/less" href="less/bootstrap.less" media="all" />
<script src="js/less-1.1.3.min.js"></script>
-
Not feeling the .js solution? Try the Less Mac app or use Node.js to compile when you deploy your code.
+
{{_i}}Not feeling the .js solution? Try the Less Mac app or use Node.js to compile when you deploy your code.{{/i}}
-
What’s included
-
Here are some of the highlights of what’s included in Twitter Bootstrap as part of Bootstrap. Head over to the Bootstrap website or Github project page to download and learn more.
-
Variables
-
Variables in Less are perfect for maintaining and updating your CSS headache free. When you want to change a color value or a frequently used value, update it in one spot and you’re set.
+
{{_i}}What’s included{{/i}}
+
{{_i}}Here are some of the highlights of what’s included in Twitter Bootstrap as part of Bootstrap. Head over to the Bootstrap website or Github project page to download and learn more.{{/i}}
+
{{_i}}Variables{{/i}}
+
{{_i}}Variables in Less are perfect for maintaining and updating your CSS headache free. When you want to change a color value or a frequently used value, update it in one spot and you’re set.{{/i}}
// Links
@linkColor: #8b59c2;
@@ -281,16 +281,16 @@
@baseline: 18px;
-
Commenting
-
Less also provides another style of commenting in addition to CSS’s normal /* ... */
syntax.
+
{{_i}}Commenting{{/i}}
+
{{_i}}Less also provides another style of commenting in addition to CSS’s normal /* ... */
syntax.{{/i}}
// This is a comment
/* This is also a comment */
-
Mixins up the wazoo
-
Mixins are basically includes or partials for CSS, allowing you to combine a block of code into one. They’re great for vendor prefixed properties like box-shadow
, cross-browser gradients, font stacks, and more. Below is a sample of the mixins that are included with Bootstrap.
-
Font stacks
+
{{_i}}Mixins up the wazoo{{/i}}
+
{{_i}}Mixins are basically includes or partials for CSS, allowing you to combine a block of code into one. They’re great for vendor prefixed properties like box-shadow
, cross-browser gradients, font stacks, and more. Below is a sample of the mixins that are included with Bootstrap.{{/i}}
+
{{_i}}Font stacks{{/i}}
#font {
.shorthand(@weight: normal, @size: 14px, @lineHeight: 20px) {
@@ -307,7 +307,7 @@
...
}
-
Gradients
+
{{_i}}Gradients{{/i}}
#gradient {
...
@@ -326,8 +326,8 @@
}
-
Operations
-
Get fancy and perform some math to generate flexible and powerful mixins like the one below.
+
{{_i}}Operations{{/i}}
+
{{_i}}Get fancy and perform some math to generate flexible and powerful mixins like the one below.{{/i}}
// Griditude
@gridColumns: 16;
@@ -341,62 +341,62 @@
}
-
Compiling Less
-
After modifying the .less
files in /lib/, you'll need to recompile them in order to regenerate the bootstrap-*.*.*.css and bootstrap-*.*.*.min.css files. If you're submitting a pull request to GitHub, you must always recompile.
-
Ways to compile
+
{{_i}}Compiling Less{{/i}}
+
{{_i}}After modifying the .less
files in /lib/, you'll need to recompile them in order to regenerate the bootstrap-*.*.*.css and bootstrap-*.*.*.min.css files. If you're submitting a pull request to GitHub, you must always recompile.{{/i}}
+
{{_i}}Ways to compile{{/i}}
- Method |
- Steps |
+ {{_i}}Method{{/i}} |
+ {{_i}}Steps{{/i}} |
- Node with makefile |
+ {{_i}}Node with makefile{{/i}} |
- Install the LESS command line compiler with npm by running the following command:
+ {{_i}}Install the LESS command line compiler with npm by running the following command:{{/i}}
$ npm install less
- Once installed just run make from the root of your bootstrap directory and you're all set.
- Additionally, if you have watchr installed, you may run make watch to have bootstrap automatically rebuilt every time you edit a file in the bootstrap lib (this isn't required, just a convenience method).
+ {{_i}}Once installed just run make from the root of your bootstrap directory and you're all set.{{/i}}
+ {{_i}}Additionally, if you have watchr installed, you may run make watch to have bootstrap automatically rebuilt every time you edit a file in the bootstrap lib (this isn't required, just a convenience method).{{/i}}
|
- Javascript |
+ {{_i}}Javascript{{/i}} |
- Download the latest Less.js and include the path to it (and Bootstrap) in the <head> .
+ {{_i}}Download the latest Less.js and include the path to it (and Bootstrap) in the <head> .{{/i}}
<link rel="stylesheet/less" href="/path/to/bootstrap.less">
<script src="/path/to/less.js"></script>
- To recompile the .less files, just save them and reload your page. Less.js compiles them and stores them in local storage.
+ {{_i}}To recompile the .less files, just save them and reload your page. Less.js compiles them and stores them in local storage.{{/i}}
|
- Command line |
+ {{_i}}Command line{{/i}} |
- Install the LESS command line tool via Node and run the following command:
+ {{_i}}Install the LESS command line tool via Node and run the following command:{{/i}}
$ lessc ./lib/bootstrap.less > bootstrap.css
- Be sure to include --compress in that command if you're trying to save some bytes!
+ {{_i}}Be sure to include --compress in that command if you're trying to save some bytes!{{/i}}
|
- Unofficial Mac app |
+ {{_i}}Unofficial Mac app{{/i}} |
- The unofficial Mac app watches directories of .less files and compiles the code to local files after every save of a watched .less file.
- If you like, you can toggle preferences in the app for automatic minifying and which directory the compiled files end up in.
+ {{_i}}The unofficial Mac app watches directories of .less files and compiles the code to local files after every save of a watched .less file.{{/i}}
+ {{_i}}If you like, you can toggle preferences in the app for automatic minifying and which directory the compiled files end up in.{{/i}}
|
Crunch |
- Crunch is a great looking LESS editor and compiler built on Adobe Air. |
+ {{_i}}Crunch is a great looking LESS editor and compiler built on Adobe Air.{{/i}} |
CodeKit |
- Created by the same guy as the unofficial Mac app, CodeKit is a Mac app that compiles LESS, SASS, Stylus, and CoffeeScript. |
+ {{_i}}Created by the same guy as the unofficial Mac app, CodeKit is a Mac app that compiles LESS, SASS, Stylus, and CoffeeScript.{{/i}} |
Simpless |
- Mac, Linux, and PC app for drag and drop compiling of LESS files. Plus, the source code is on GitHub. |
+ {{_i}}Mac, Linux, and PC app for drag and drop compiling of LESS files. Plus, the source code is on GitHub.{{/i}} |
diff --git a/docs/templates/pages/scaffolding.mustache b/docs/templates/pages/scaffolding.mustache
index c586af1b91..7c0c12e8f4 100644
--- a/docs/templates/pages/scaffolding.mustache
+++ b/docs/templates/pages/scaffolding.mustache
@@ -1,12 +1,12 @@
- Scaffolding
- Bootstrap is built on a responsive 12-column grid. We've also included fixed- and fluid-width layouts based on that system.
+ {{_i}}Scaffolding{{/i}}
+ {{_i}}Bootstrap is built on a responsive 12-column grid. We've also included fixed- and fluid-width layouts based on that system.{{/i}}
@@ -16,7 +16,7 @@
================================================== -->
Default 940px grid
@@ -53,8 +53,8 @@
-
The default grid system provided as part of Bootstrap is a 940px-wide, 12-column grid.
-
It also has three responsive variations for various devices and resolutions: phone, tablet, and large widescreen desktops.
+
{{_i}}The default grid system provided as part of Bootstrap is a 940px-wide, 12-column grid.{{/i}}
+
{{_i}}It also has three responsive variations for various devices and resolutions: phone, tablet, and large widescreen desktops.{{/i}}
-
As shown here, a basic layout can be created with two "columns," each spanning a number of the 12 foundational columns we defined as part of our grid system.
+
{{_i}}As shown here, a basic layout can be created with two "columns," each spanning a number of the 12 foundational columns we defined as part of our grid system.{{/i}}
@@ -84,20 +84,20 @@
- Nesting columns
+ {{_i}}Nesting columns{{/i}}
-
With the static (non-fluid) grid system in Bootstrap, nesting is easy. To nest your content, just add a new .row
and set of .span*
columns within an existing .span*
column.
-
Example
+
{{_i}}With the static (non-fluid) grid system in Bootstrap, nesting is easy. To nest your content, just add a new .row
and set of .span*
columns within an existing .span*
column.{{/i}}
+
{{_i}}Example{{/i}}
- Level 1 of column
+ {{_i}}Level 1 of column{{/i}}
- Level 2
+ {{_i}}Level 2{{/i}}
- Level 2
+ {{_i}}Level 2{{/i}}
@@ -107,10 +107,10 @@
<div class="row">
<div class="span12">
- Level 1 of column
+ {{_i}}Level 1 of column{{/i}}
<div class="row">
- <div class="span6">Level 2</div>
- <div class="span6">Level 2</div>
+ <div class="span6">{{_i}}Level 2{{/i}}</div>
+ <div class="span6">{{_i}}Level 2{{/i}}</div>
</div>
</div>
</div>
@@ -118,50 +118,50 @@
-
Grid customization
+
{{_i}}Grid customization{{/i}}
- Variable |
- Default value |
- Description |
+ {{_i}}Variable{{/i}} |
+ {{_i}}Default value{{/i}} |
+ {{_i}}Description{{/i}} |
@gridColumns |
12 |
- Number of columns |
+ {{_i}}Number of columns{{/i}} |
@gridColumnWidth |
60px |
- Width of each column |
+ {{_i}}Width of each column{{/i}} |
@gridGutterWidth |
20px |
- Negative space between columns |
+ {{_i}}Negative space between columns{{/i}} |
@siteWidth |
- Computed sum of all columns and gutters |
- Counts number of columns and gutters to set width of the .fixed-container() mixin |
+ {{_i}}Computed sum of all columns and gutters{{/i}} |
+ {{_i}}Counts number of columns and gutters to set width of the .fixed-container() mixin{{/i}} |
-
Variables in LESS
-
Built into Bootstrap are a handful of variables for customizing the default 940px grid system, documented above. All variables for the grid are stored in variables.less.
+
{{_i}}Variables in LESS{{/i}}
+
{{_i}}Built into Bootstrap are a handful of variables for customizing the default 940px grid system, documented above. All variables for the grid are stored in variables.less.{{/i}}
-
How to customize
-
Modifying the grid means changing the three @grid*
variables and recompiling Bootstrap. Change the grids in the preboot.less file and use one of the four ways documented to recompile.
+
{{_i}}How to customize{{/i}}
+
{{_i}}Modifying the grid means changing the three @grid*
variables and recompiling Bootstrap. Change the grids in the preboot.less file and use one of the four ways documented to recompile.{{/i}}
-
Staying responsive
-
Customization of the grid only works at the default level, the 940px grid. To maintain the responsive aspects of Bootstrap, you'll also have to customize the grids in responsive.less.
+
{{_i}}Staying responsive{{/i}}
+
{{_i}}Customization of the grid only works at the default level, the 940px grid. To maintain the responsive aspects of Bootstrap, you'll also have to customize the grids in responsive.less.{{/i}}
@@ -173,13 +173,13 @@
================================================== -->
-
Fixed layout
-
The default and simple 940px-wide, centered layout for just about any website or page provided by a single <div class="container">
.
+
{{_i}}Fixed layout{{/i}}
+
{{_i}}The default and simple 940px-wide, centered layout for just about any website or page provided by a single <div class="container">
.{{/i}}
@@ -192,8 +192,8 @@
-
Fluid layout
-
<div class="fluid-container">
gives flexible page structure, min- and max-widths, and a left-hand sidebar. It's great for apps and docs.
+
{{_i}}Fluid layout{{/i}}
+
{{_i}}<div class="fluid-container">
gives flexible page structure, min- and max-widths, and a left-hand sidebar. It's great for apps and docs.{{/i}}
@@ -221,7 +221,7 @@
================================================== -->
@@ -229,42 +229,42 @@
-
Supported devices
-
Bootstrap supports a handful of media queries to help make your projects more appropriate on different devices and screen resolutions. Here's what's included:
+
{{_i}}Supported devices{{/i}}
+
{{_i}}Bootstrap supports a handful of media queries to help make your projects more appropriate on different devices and screen resolutions. Here's what's included:{{/i}}
- Label |
- Layout width |
- Column width |
- Gutter width |
+ {{_i}}Label{{/i}} |
+ {{_i}}Layout width{{/i}} |
+ {{_i}}Column width{{/i}} |
+ {{_i}}Gutter width{{/i}} |
- Smartphones |
+ {{_i}}Smartphones{{/i}} |
480px and below |
- Fluid columns, no fixed widths |
+ {{_i}}Fluid columns, no fixed widths{{/i}} |
- Portrait tablets |
+ {{_i}}Portrait tablets{{/i}} |
480px to 768px |
- Fluid columns, no fixed widths |
+ {{_i}}Fluid columns, no fixed widths{{/i}} |
- Landscape tablets |
+ {{_i}}Landscape tablets{{/i}} |
768px to 940px |
44px |
20px |
- Default |
+ {{_i}}Default{{/i}} |
940px and up |
60px |
20px |
- Large display |
+ {{_i}}Large display{{/i}} |
1210px and up |
70px |
30px |
@@ -272,12 +272,12 @@
-
What they do
-
Media queries allow for custom CSS based on a number of conditions—ratios, widths, display type, etc—but usually focuses around min-width
and max-width
.
+
{{_i}}What they do{{/i}}
+
{{_i}}Media queries allow for custom CSS based on a number of conditions—ratios, widths, display type, etc—but usually focuses around min-width
and max-width
.{{/i}}
- - Modify the width of column in our grid
- - Stack elements instead of float wherever necessary
- - Resize headings and text to be more appropriate for devices
+ - {{_i}}Modify the width of column in our grid{{/i}}
+ - {{_i}}Stack elements instead of float wherever necessary{{/i}}
+ - {{_i}}Resize headings and text to be more appropriate for devices{{/i}}
@@ -285,29 +285,29 @@
-
Using the media queries
+
{{_i}}Using the media queries{{/i}}
-
Bootstrap doesn't automatically include these media queries, but understanding and adding them is very easy and requires minimal setup. You have a few options for including the responsive features of Bootstrap:
+
{{_i}}Bootstrap doesn't automatically include these media queries, but understanding and adding them is very easy and requires minimal setup. You have a few options for including the responsive features of Bootstrap:{{/i}}
- - Use the compiled responsive version, bootstrap.reponsive.css
- - Add @import "responsive.less" and recompile Bootstrap
- - Compile responsive.less as a separate file and include that
+ - {{_i}}Use the compiled responsive version, bootstrap.reponsive.css{{/i}}
+ - {{_i}}Add @import "responsive.less" and recompile Bootstrap{{/i}}
+ - {{_i}}Compile responsive.less as a separate file and include that{{/i}}
-
Why not just include it? Truth be told, not everything needs to be responsive. Instead of encouraging developers to remove this feature, we figure it best to enable it.
+
{{_i}}Why not just include it? Truth be told, not everything needs to be responsive. Instead of encouraging developers to remove this feature, we figure it best to enable it.{{/i}}
- // Landscape phones and down
+ // {{_i}}Landscape phones and down{{/i}}
@media (max-width: 480px) { ... }
- // Landscape phone to portrait tablet
+ // {{_i}}Landscape phone to portrait tablet{{/i}}
@media (min-width: 480px) and (max-width: 768px) { ... }
- // Portrait tablet to landscape and desktop
+ // {{_i}}Portrait tablet to landscape and desktop{{/i}}
@media (min-width: 768px) and (max-width: 940px) { ... }
- // Large desktop
+ // {{_i}}Large desktop{{/i}}
@media (min-width: 1210px) { .. }
diff --git a/docs/templates/pages/upgrading.mustache b/docs/templates/pages/upgrading.mustache
index 475539284b..cc731eae12 100644
--- a/docs/templates/pages/upgrading.mustache
+++ b/docs/templates/pages/upgrading.mustache
@@ -1,78 +1,78 @@
- Upgrading to Bootstrap 2
- Learn about significant changes and additions since v1.4 with this handy guide.
+ {{_i}}Upgrading to Bootstrap 2{{/i}}
+ {{_i}}Learn about significant changes and additions since v1.4 with this handy guide.{{/i}}
Rough outline
- - Docs completely overhauled
+
- {{_i}}Docs completely overhauled{{/i}}
- - Responsive thanks to new grid system
- - Now less marketing and more information
- - Extensive use of tables to share classes and elements of most components
- - Broken down into several pages for easier consumption
+ - {{_i}}Responsive thanks to new grid system{{/i}}
+ - {{_i}}Now less marketing and more information{{/i}}
+ - {{_i}}Extensive use of tables to share classes and elements of most components{{/i}}
+ - {{_i}}Broken down into several pages for easier consumption{{/i}}
- - Updated grid system, now only 12 columns
+
- {{_i}}Updated grid system, now only 12 columns{{/i}}
- - Same great classes, but now only 12 columns
- - Responsive approach means your projects virtually work out of the box on smartphones, tablets, and more
+ - {{_i}}Same great classes, but now only 12 columns{{/i}}
+ - {{_i}}Responsive approach means your projects virtually work out of the box on smartphones, tablets, and more{{/i}}
- - New thumbnails (previously media grids)
+
- {{_i}}New thumbnails (previously media grids){{/i}}
- .media-grid
class has been changed to .thumbnails
- - Individual thumbnails now require
.thumbnail
class
+ - {{_i}}
.media-grid
class has been changed to .thumbnails
{{/i}}
+ - {{_i}}Individual thumbnails now require
.thumbnail
class{{/i}}
- - Updated forms
+
- {{_i}}Updated forms{{/i}}
- - Default form style is now stacked to use less CSS and add flexibility
- - Exact same markup is required for vertical or horizontal forms—just swap the classes
- - New form defaults for search, inline, vertical, and horizontal
+ - {{_i}}Default form style is now stacked to use less CSS and add flexibility{{/i}}
+ - {{_i}}Exact same markup is required for vertical or horizontal forms—just swap the classes{{/i}}
+ - {{_i}}New form defaults for search, inline, vertical, and horizontal{{/i}}
- Updated tables
- - Table classes made more consistent
- - Removed unused table color options (too much code for such little impact)
+ - {{_i}}Table classes made more consistent{{/i}}
+ - {{_i}}Removed unused table color options (too much code for such little impact){{/i}}
- Typography
- - Right-aligned option for blockquotes if float: right;
- h4
elements were dropped from 16px to 14px with a default line-height
of 18px
- h5
elements were dropped from 14px to 12px
- h6
elements were dropped from 13px to 11px
+ - {{_i}}Right-aligned option for blockquotes if float: right;{{/i}}
+ - {{_i}}
h4
elements were dropped from 16px to 14px with a default line-height
of 18px{{/i}}
+ - {{_i}}
h5
elements were dropped from 14px to 12px{{/i}}
+ - {{_i}}
h6
elements were dropped from 13px to 11px{{/i}}
- - Buttons
+
- {{_i}}Buttons{{/i}}
- - Added button bar options
+ - {{_i}}Added button bar options{{/i}}
- - Examples
+
- {{_i}}Examples{{/i}}
- - Fluid examples redone.
.fluid-container
now requires a .sidebar-left
or .sidebar-right
as well. Fluid sidebar element has a new class, .fluid-sidebar
.
+ - {{_i}}Fluid examples redone.
.fluid-container
now requires a .sidebar-left
or .sidebar-right
as well. Fluid sidebar element has a new class, .fluid-sidebar
.{{/i}}
- - Dropdown menus
+
- {{_i}}Dropdown menus{{/i}}
- - Updated the
.dropdown-menu
to tighten up spacing
- - Now requires you to add a
<span class="caret"></span>
to show the dropdown arrow
- - The navbar (fixed topbar) has brand new dropdowns. Gone are the dark versions and in their place are the standard white ones with an additional caret at their tops for clarity of position.
+ - {{_i}}Updated the
.dropdown-menu
to tighten up spacing{{/i}}
+ - {{_i}}Now requires you to add a
<span class="caret"></span>
to show the dropdown arrow{{/i}}
+ - {{_i}}The navbar (fixed topbar) has brand new dropdowns. Gone are the dark versions and in their place are the standard white ones with an additional caret at their tops for clarity of position.{{/i}}
- - Navigation
+
- {{_i}}Navigation{{/i}}
- - Tabs and pills now require the use of a new base class,
.nav
, on their <ul>
- - New nav list component added that uses the same base class,
.nav
- - Vertical tabs and pills have been added—just add
.stacked
to the <ul>
- - Pills were restyled to be less rounded by default
- - Pills now have dropdown menu support (they share the same markup and styles as tabs)
+ - {{_i}}Tabs and pills now require the use of a new base class,
.nav
, on their <ul>
{{/i}}
+ - {{_i}}New nav list component added that uses the same base class,
.nav
{{/i}}
+ - {{_i}}Vertical tabs and pills have been added—just add
.stacked
to the <ul>
<{{/i}}/li>
+ - {{_i}}Pills were restyled to be less rounded by default{{/i}}
+ - {{_i}}Pills now have dropdown menu support (they share the same markup and styles as tabs){{/i}}
diff --git a/js/bootstrap-button.js b/js/bootstrap-button.js
index 046d256142..2461ffec6e 100644
--- a/js/bootstrap-button.js
+++ b/js/bootstrap-button.js
@@ -1,5 +1,5 @@
/* ============================================================
- * bootstrap-buttons.js v2.0.0
+ * bootstrap-button.js v2.0.0
* http://twitter.github.com/bootstrap/javascript.html#buttons
* ============================================================
* Copyright 2012 Twitter, Inc.
diff --git a/js/bootstrap-carousel.js b/js/bootstrap-carousel.js
index 4e12e31b54..3262f0cab0 100644
--- a/js/bootstrap-carousel.js
+++ b/js/bootstrap-carousel.js
@@ -1,6 +1,6 @@
/* ==========================================================
* bootstrap-carousel.js v2.0.0
- * http://twitter.github.com/bootstrap/javascript.html#alerts
+ * http://twitter.github.com/bootstrap/javascript.html#carousel
* ==========================================================
* Copyright 2012 Twitter, Inc.
*
diff --git a/js/bootstrap-collapse.js b/js/bootstrap-collapse.js
index 9278f66d0e..ac434dcf37 100644
--- a/js/bootstrap-collapse.js
+++ b/js/bootstrap-collapse.js
@@ -1,6 +1,6 @@
/* =============================================================
- * bootstrap-collapsible.js v2.0.0
- * http://twitter.github.com/bootstrap/javascript.html#collapsible
+ * bootstrap-collapse.js v2.0.0
+ * http://twitter.github.com/bootstrap/javascript.html#collapse
* =============================================================
* Copyright 2012 Twitter, Inc.
*
diff --git a/js/bootstrap-dropdown.js b/js/bootstrap-dropdown.js
index 923da6bfa6..f9d93fc72a 100644
--- a/js/bootstrap-dropdown.js
+++ b/js/bootstrap-dropdown.js
@@ -1,6 +1,6 @@
/* ============================================================
* bootstrap-dropdown.js v2.0.0
- * http://twitter.github.com/bootstrap/javascript.html#dropdown
+ * http://twitter.github.com/bootstrap/javascript.html#dropdowns
* ============================================================
* Copyright 2012 Twitter, Inc.
*
diff --git a/js/bootstrap-modal.js b/js/bootstrap-modal.js
index 3652f5c8b5..ecb7b5add7 100644
--- a/js/bootstrap-modal.js
+++ b/js/bootstrap-modal.js
@@ -1,6 +1,6 @@
/* =========================================================
* bootstrap-modal.js v2.0.0
- * http://twitter.github.com/bootstrap/javascript.html#modal
+ * http://twitter.github.com/bootstrap/javascript.html#modals
* =========================================================
* Copyright 2012 Twitter, Inc.
*
diff --git a/js/bootstrap-popover.js b/js/bootstrap-popover.js
index a0de0f08dc..57864fc6e9 100644
--- a/js/bootstrap-popover.js
+++ b/js/bootstrap-popover.js
@@ -1,6 +1,6 @@
/* ===========================================================
* bootstrap-popover.js v2.0.0
- * http://twitter.github.com/bootstrap/javascript.html#popover
+ * http://twitter.github.com/bootstrap/javascript.html#popovers
* ===========================================================
* Copyright 2012 Twitter, Inc.
*
diff --git a/js/bootstrap-tab.js b/js/bootstrap-tab.js
index e5b85e2325..d52be872f1 100644
--- a/js/bootstrap-tab.js
+++ b/js/bootstrap-tab.js
@@ -1,5 +1,5 @@
/* ========================================================
- * bootstrap-tabs.js v2.0.0
+ * bootstrap-tab.js v2.0.0
* http://twitter.github.com/bootstrap/javascript.html#tabs
* ========================================================
* Copyright 2012 Twitter, Inc.
diff --git a/js/bootstrap-tooltip.js b/js/bootstrap-tooltip.js
index 07a5d46f56..21f2311fb2 100644
--- a/js/bootstrap-tooltip.js
+++ b/js/bootstrap-tooltip.js
@@ -1,6 +1,6 @@
/* ===========================================================
* bootstrap-tooltip.js v2.0.0
- * http://twitter.github.com/bootstrap/javascript.html#tooltip
+ * http://twitter.github.com/bootstrap/javascript.html#tooltips
* Inspired by the original jQuery.tipsy by Jason Frame
* ===========================================================
* Copyright 2012 Twitter, Inc.
diff --git a/js/bootstrap-transition.js b/js/bootstrap-transition.js
index 8f6e86e442..94f1dbdf80 100644
--- a/js/bootstrap-transition.js
+++ b/js/bootstrap-transition.js
@@ -1,6 +1,6 @@
/* ===================================================
- * bootstrap-transitions.js v2.0.0
- * http://twitter.github.com/bootstrap/javascript.html
+ * bootstrap-transition.js v2.0.0
+ * http://twitter.github.com/bootstrap/javascript.html#transitions
* ===================================================
* Copyright 2012 Twitter, Inc.
*
diff --git a/js/bootstrap-typeahead.js b/js/bootstrap-typeahead.js
index b8ff5aab00..f64fcca01e 100644
--- a/js/bootstrap-typeahead.js
+++ b/js/bootstrap-typeahead.js
@@ -1,6 +1,6 @@
/* =============================================================
* bootstrap-typeahead.js v2.0.0
- * http://twitter.github.com/bootstrap/javascript.html#collapsible
+ * http://twitter.github.com/bootstrap/javascript.html#typeahead
* =============================================================
* Copyright 2012 Twitter, Inc.
*