Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMartijn Cuppens <martijn.cuppens@gmail.com>2018-06-27 21:15:23 +0300
committerXhmikosR <xhmikosr@gmail.com>2018-07-02 09:49:45 +0300
commitedc5597705be2c4ca3cb3e1d6e3bcf361d72fe9c (patch)
tree583379272e75f77bb058debd2c6d6359956d9064 /docs
parentddd33cd9579e677cadd45ab9a0cd543ec8ba1edf (diff)
Add js maps & tweak docs
Diffstat (limited to 'docs')
-rw-r--r--docs/4.1/getting-started/contents.md20
1 files changed, 12 insertions, 8 deletions
diff --git a/docs/4.1/getting-started/contents.md b/docs/4.1/getting-started/contents.md
index c95549f00c..fd38e2fba5 100644
--- a/docs/4.1/getting-started/contents.md
+++ b/docs/4.1/getting-started/contents.md
@@ -10,15 +10,11 @@ toc: true
Once downloaded, unzip the compressed folder and you'll see something like this:
-<!-- NOTE: This info is intentionally duplicated in the README. Copy any changes made here over to the README too. -->
+<!-- NOTE: This info is intentionally duplicated in the README. Copy any changes made here over to the README too, but be sure to keep in mind to add the `dist` folder. -->
{% highlight plaintext %}
bootstrap/
├── css/
-│ ├── bootstrap.css
-│ ├── bootstrap.css.map
-│ ├── bootstrap.min.css
-│ ├── bootstrap.min.css.map
│ ├── bootstrap-grid.css
│ ├── bootstrap-grid.css.map
│ ├── bootstrap-grid.min.css
@@ -26,15 +22,23 @@ bootstrap/
│ ├── bootstrap-reboot.css
│ ├── bootstrap-reboot.css.map
│ ├── bootstrap-reboot.min.css
-│ └── bootstrap-reboot.min.css.map
+│ ├── bootstrap-reboot.min.css.map
+│ ├── bootstrap.css
+│ ├── bootstrap.css.map
+│ ├── bootstrap.min.css
+│ └── bootstrap.min.css.map
└── js/
├── bootstrap.bundle.js
+ ├── bootstrap.bundle.js.map
├── bootstrap.bundle.min.js
+ ├── bootstrap.bundle.min.js.map
├── bootstrap.js
- └── bootstrap.min.js
+ ├── bootstrap.js.map
+ ├── bootstrap.min.js
+ └── bootstrap.min.js.map
{% 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. Bundled JS files (`bootstrap.bundle.js` and minified `bootstrap.bundle.min.js`) include [Popper](https://popper.js.org/), but not [jQuery](https://jquery.com/).
+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.*`). [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/).
## CSS files