diff options
| author | Mark Otto <[email protected]> | 2017-10-30 12:58:37 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-10-30 12:58:37 -0700 |
| commit | ce800e94d7d9906c2b05452faa60bebc34ccfe62 (patch) | |
| tree | 3ab11369d182537e41bc577f61c3767fae74de07 /docs | |
| parent | 2fec9f13cd044cb46060ebecfb10d410c3d97c19 (diff) | |
| parent | a1e2a2763240ec0220984d37c2f7b154a9160ba1 (diff) | |
| download | bootstrap-ce800e94d7d9906c2b05452faa60bebc34ccfe62.tar.xz bootstrap-ce800e94d7d9906c2b05452faa60bebc34ccfe62.zip | |
Merge branch 'docs-bundle-js' of https://github.com/vannitotaro/bootstrap into vannitotaro-docs-bundle-js
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/4.0/getting-started/contents.md | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/docs/4.0/getting-started/contents.md b/docs/4.0/getting-started/contents.md index 975f29a0a..798324bd9 100644 --- a/docs/4.0/getting-started/contents.md +++ b/docs/4.0/getting-started/contents.md @@ -34,7 +34,7 @@ bootstrap/ └── bootstrap.min.js {% endhighlight %} -This is the most basic form of Bootstrap: precompiled 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.*`). CSS [source maps](https://developers.google.com/web/tools/chrome-devtools/javascript/source-maps) (`bootstrap.*.map`) are available for use with certain browsers' developer tools. +This is the most basic form of Bootstrap: precompiled 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.*`). CSS [source maps](https://developers.google.com/web/tools/chrome-devtools/javascript/source-maps) (`bootstrap.*.map`) are available for use with certain browsers' developer tools. Bundled JS files (`bootstrap.bundle.js` and minified `bootstrap.bundle.min.js`) include [Popper](https://popper.js.org/), but not [jQuery](https://jquery.com/). ### Comparison of CSS files @@ -82,6 +82,36 @@ This is the most basic form of Bootstrap: precompiled files for quick drop-in us </tbody> </table> +### Comparison of JS files + +<table class="table table-bordered table-responsive"> + <thead> + <tr> + <th scope="col">JS files</th> + <th scope="col" class="text-center">Popper</th> + <th scope="col" class="text-center">jQuery</th> + </tr> + </thead> + <tbody> + <tr> + <th scope="row"> + <div><code class="text-nowrap">bootstrap.bundle.js</code></div> + <div><code class="text-nowrap">bootstrap.bundle.min.js</code></div> + </th> + <td class="table-success text-center align-middle">Included</td> + <td class="table-danger text-center align-middle">Not included</td> + </tr> + <tr> + <th scope="row"> + <div><code class="text-nowrap">bootstrap.js</code></div> + <div><code class="text-nowrap">bootstrap.min.js</code></div> + </th> + <td class="table-danger text-center align-middle">Not included</td> + <td class="table-danger text-center align-middle">Not included</td> + </tr> + </tbody> +</table> + ## Bootstrap source code The Bootstrap source code download includes the precompiled CSS and JavaScript assets, along with source Sass, JavaScript, and documentation. More specifically, it includes the following and more: |
