From 7e758f60fcb8f5391ea48cacf432c76e8b747909 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Fri, 5 Dec 2014 11:49:53 -0800 Subject: Repeat warning comment about keeping "What's included" sections in sync Refs #15238 [skip sauce] --- docs/_includes/getting-started/whats-included.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'docs/_includes/getting-started') diff --git a/docs/_includes/getting-started/whats-included.html b/docs/_includes/getting-started/whats-included.html index d18fb0278..42e2ea482 100644 --- a/docs/_includes/getting-started/whats-included.html +++ b/docs/_includes/getting-started/whats-included.html @@ -30,7 +30,8 @@ bootstrap/ ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff {% 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 (bootstrap.*.map) are available for use with certain browsers' developer tools. Fonts from Glyphicons are included, as is the optional Bootstrap theme.

Bootstrap source code

-- cgit v1.2.3 From c8855a7ad120b37fd9a25125f90093478656362f Mon Sep 17 00:00:00 2001 From: Bastien Date: Fri, 12 Dec 2014 14:22:41 +0100 Subject: Add glyphicons fonts in woff2 --- docs/_includes/getting-started/whats-included.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'docs/_includes/getting-started') diff --git a/docs/_includes/getting-started/whats-included.html b/docs/_includes/getting-started/whats-included.html index 42e2ea482..8aa8cf2a9 100644 --- a/docs/_includes/getting-started/whats-included.html +++ b/docs/_includes/getting-started/whats-included.html @@ -28,7 +28,8 @@ bootstrap/ ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf - └── glyphicons-halflings-regular.woff + ├── glyphicons-halflings-regular.woff + └── glyphicons-halflings-regular.woff2 {% endhighlight %} -- cgit v1.2.3 From 2d41894ce51a1ae3b6e9d96eb63bf9cc3b50f64b Mon Sep 17 00:00:00 2001 From: "Patrick H. Lauke" Date: Sun, 14 Dec 2014 14:47:05 +0000 Subject: Expand/clarify advice about skip links --- docs/_includes/getting-started/accessibility.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'docs/_includes/getting-started') diff --git a/docs/_includes/getting-started/accessibility.html b/docs/_includes/getting-started/accessibility.html index 37c19315c..cbb528dce 100644 --- a/docs/_includes/getting-started/accessibility.html +++ b/docs/_includes/getting-started/accessibility.html @@ -3,12 +3,13 @@

Bootstrap follows common web standards and—with minimal extra effort—can be used to create sites that are accessible to those using AT.

Skip navigation

-

If your navigation contains many links and comes before the main content in the DOM, add a Skip to main content link immediately after your opening <body> tag. (read why)

+

If your navigation contains many links and comes before the main content in the DOM, add a Skip to main content link before the navigation (read why). Using the .sr-only class will visually hide the skip link, and the .sr-only-focusable class will ensure that the link becomes visible once focused (for sighted keyboard users).

{% highlight html %} Skip to main content + ...
- The main page content. +
{% endhighlight %} -- cgit v1.2.3 From 4f1000d77242f3cd9e363da9db9021cb1a227e59 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Tue, 30 Dec 2014 18:33:40 -0800 Subject: Document that Autoprefixer is required Closes #14937 [skip sauce] --- docs/_includes/getting-started/download.html | 3 +++ 1 file changed, 3 insertions(+) (limited to 'docs/_includes/getting-started') diff --git a/docs/_includes/getting-started/download.html b/docs/_includes/getting-started/download.html index edc048df5..fd81a405b 100644 --- a/docs/_includes/getting-started/download.html +++ b/docs/_includes/getting-started/download.html @@ -43,4 +43,7 @@

Install with Bower

You can also install and manage Bootstrap's Less, CSS, JavaScript, and fonts using Bower:

{% highlight bash %}$ bower install bootstrap{% endhighlight %} + +

Autoprefixer required for Less/Sass

+

Bootstrap uses Autoprefixer to deal with CSS vendor prefixes. If you're compiling Bootstrap from its Less/Sass source and not using our Gruntfile, you'll need to integrate Autoprefixer into your build process yourself. If you're using precompiled Bootstrap or using our Gruntfile, you don't need to worry about this because Autoprefixer is already integrated into our Gruntfile.

-- cgit v1.2.3 From 1b375420fa1491f724c6c5a685b61bb93b803f05 Mon Sep 17 00:00:00 2001 From: Nate Eagleson Date: Tue, 30 Dec 2014 21:48:34 -0500 Subject: Remove extra word from disabling-responsiveness.html --- docs/_includes/getting-started/disabling-responsiveness.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/_includes/getting-started') diff --git a/docs/_includes/getting-started/disabling-responsiveness.html b/docs/_includes/getting-started/disabling-responsiveness.html index d154e204d..6102e02f3 100644 --- a/docs/_includes/getting-started/disabling-responsiveness.html +++ b/docs/_includes/getting-started/disabling-responsiveness.html @@ -2,7 +2,7 @@

Disabling responsiveness

Bootstrap automatically adapts your pages for various screen sizes. - Here's how to disable this feature so your page works like in this non-responsive example.

+ Here's how to disable this feature so your page works like this non-responsive example.

Steps to disable page responsiveness

    -- cgit v1.2.3 From 9db1de2a3aa734f41d9f5d0d1c0dfac5b77f4874 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 6 Jan 2015 12:49:31 +0200 Subject: Update jQuery to v1.11.2. --- docs/_includes/getting-started/template.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/_includes/getting-started') diff --git a/docs/_includes/getting-started/template.html b/docs/_includes/getting-started/template.html index 47a0a8b67..84e009885 100644 --- a/docs/_includes/getting-started/template.html +++ b/docs/_includes/getting-started/template.html @@ -27,7 +27,7 @@

    Hello, world!

    - + -- cgit v1.2.3 From ccc3eb5cc608b4642196581ab1678ecfdae812a4 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Wed, 14 Jan 2015 18:43:04 -0800 Subject: document usage of npm package; fixes #15127 [skip sauce] --- docs/_includes/getting-started/download.html | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'docs/_includes/getting-started') diff --git a/docs/_includes/getting-started/download.html b/docs/_includes/getting-started/download.html index fd81a405b..7059dc6d1 100644 --- a/docs/_includes/getting-started/download.html +++ b/docs/_includes/getting-started/download.html @@ -44,6 +44,16 @@

    You can also install and manage Bootstrap's Less, CSS, JavaScript, and fonts using Bower:

    {% highlight bash %}$ bower install bootstrap{% endhighlight %} +

    Install with npm

    +

    You can also install Bootstrap using npm:

    + {% highlight bash %}$ npm install bootstrap{% endhighlight %} +

    require('bootstrap') will load all of Bootstrap's jQuery plugins onto the jQuery object. The bootstrap module itself does not export anything. You can manually load Bootstrap's jQuery plugins individually by loading the /js/*.js files under the package's top-level directory.

    +

    Bootstrap's package.json contains some additional metadata under the following keys:

    +
      +
    • less - path to Bootstrap's main Less source file
    • +
    • style - path to Bootstrap's non-minified CSS that's been precompiled using the default settings (no customization)
    • +
    +

    Autoprefixer required for Less/Sass

    Bootstrap uses Autoprefixer to deal with CSS vendor prefixes. If you're compiling Bootstrap from its Less/Sass source and not using our Gruntfile, you'll need to integrate Autoprefixer into your build process yourself. If you're using precompiled Bootstrap or using our Gruntfile, you don't need to worry about this because Autoprefixer is already integrated into our Gruntfile.

    -- cgit v1.2.3 From f1cb639c3439d2cca006ebc28f05bc694c6c4ed2 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Thu, 15 Jan 2015 10:46:58 -0800 Subject: Docs: add missing "http://" --- docs/_includes/getting-started/download.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/_includes/getting-started') diff --git a/docs/_includes/getting-started/download.html b/docs/_includes/getting-started/download.html index 7059dc6d1..13a56bebd 100644 --- a/docs/_includes/getting-started/download.html +++ b/docs/_includes/getting-started/download.html @@ -50,7 +50,7 @@

    require('bootstrap') will load all of Bootstrap's jQuery plugins onto the jQuery object. The bootstrap module itself does not export anything. You can manually load Bootstrap's jQuery plugins individually by loading the /js/*.js files under the package's top-level directory.

    Bootstrap's package.json contains some additional metadata under the following keys:

      -
    • less - path to Bootstrap's main Less source file
    • +
    • less - path to Bootstrap's main Less source file
    • style - path to Bootstrap's non-minified CSS that's been precompiled using the default settings (no customization)
    -- cgit v1.2.3