From 869238c071a94c128afbcb1e6f9622a9b6f9e563 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Thu, 12 Sep 2013 10:15:38 +0200 Subject: [PATCH 1/8] We also use Chrome :P --- getting-started.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting-started.html b/getting-started.html index ddd8ebc9fa..921154bb50 100644 --- a/getting-started.html +++ b/getting-started.html @@ -673,7 +673,7 @@ bootstrap/
  • Internet Explorer
  • Opera (Mac, Windows)
  • -

    Unofficially, Bootstrap should look and behave well enough in Chromium for Linux, Firefox for Linux, and Internet Explorer 7, though they are not officially supported.

    +

    Unofficially, Bootstrap should look and behave well enough in Chromium / Chrome for Linux, Firefox for Linux, and Internet Explorer 7, though they are not officially supported.

    Internet Explorer 8 and 9

    Internet Explorer 8 and 9 are also supported, however, please be aware that some CSS3 properties and HTML5 elements are not fully supported by these browsers. In addition, Internet Explorer 8 requires the use of respond.js to enable media query support.

    From 9a21fdaf6daa315d5ec22ad81f7bd0fba8c549a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Thu, 12 Sep 2013 18:35:33 +0200 Subject: [PATCH 2/8] Better? /cc @mdo --- getting-started.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting-started.html b/getting-started.html index 921154bb50..e36d21dcd0 100644 --- a/getting-started.html +++ b/getting-started.html @@ -673,7 +673,7 @@ bootstrap/
  • Internet Explorer
  • Opera (Mac, Windows)
  • -

    Unofficially, Bootstrap should look and behave well enough in Chromium / Chrome for Linux, Firefox for Linux, and Internet Explorer 7, though they are not officially supported.

    +

    Unofficially, Bootstrap should look and behave well enough in Chromium and Chrome for Linux, Firefox for Linux, and Internet Explorer 7, though they are not officially supported.

    Internet Explorer 8 and 9

    Internet Explorer 8 and 9 are also supported, however, please be aware that some CSS3 properties and HTML5 elements are not fully supported by these browsers. In addition, Internet Explorer 8 requires the use of respond.js to enable media query support.

    From 03b1aed37b1607a6dccb19d5953cdc7f97cf892c Mon Sep 17 00:00:00 2001 From: Mathias Ose Date: Fri, 13 Sep 2013 17:54:48 +0200 Subject: [PATCH 3/8] As a node.js noob, even with the previous clarification this was a bit unclear. This change should (hopefully) make it obvious. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 29d7e99034..d55d5c2dae 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Bootstrap uses [Grunt](http://gruntjs.com/) with convenient methods for working From the command line: 1. Install `grunt-cli` globally with `npm install -g grunt-cli`. -2. From the root `/bootstrap` directory, install the [necessary local dependencies](package.json) via `npm install`. +2. Navigate to the root `/bootstrap` directory, then run `npm install`. npm will look at [package.json](package.json) and automatically install the necessary local dependencies listed there. When completed, you'll be able to run the various Grunt commands provided from the command line. From 6397ba11257641e8a37ff83a41e43b8ec6fcb3ac Mon Sep 17 00:00:00 2001 From: Justin Dorfman Date: Fri, 13 Sep 2013 11:45:15 -0700 Subject: [PATCH 4/8] getting-started - Replace NetDNA.com with MaxCDN.com --- getting-started.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting-started.html b/getting-started.html index e36d21dcd0..f465a67eb3 100644 --- a/getting-started.html +++ b/getting-started.html @@ -37,7 +37,7 @@ base_url: "../"

    Bootstrap CDN

    -

    The folks over at NetDNA graciously provide CDN support for Bootstrap's CSS and JavaScript. Just use these Bootstrap CDN links.

    +

    The folks over at MaxCDN graciously provide CDN support for Bootstrap's CSS and JavaScript. Just use these Bootstrap CDN links.

    {% highlight html %} From 31f32e848509392258e8802b07954730422075dd Mon Sep 17 00:00:00 2001 From: Andrew Homeyer Date: Sun, 15 Sep 2013 21:07:15 -0600 Subject: [PATCH 5/8] remove duplicate text in documentation for popover --- javascript.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript.html b/javascript.html index ecab0bf9e5..0f97d1c6c1 100644 --- a/javascript.html +++ b/javascript.html @@ -1111,7 +1111,7 @@ $('#myTooltip').on('hidden.bs.tooltip', function () { selector string false - if a selector is provided, tooltip objects will be delegated to the specified targets if a selector is provided, tooltip objects will be delegated to the specified targets. in practice, this is used to enable dynamic HTML content to have popovers added. See this and an informative example. + if a selector is provided, tooltip objects will be delegated to the specified targets. in practice, this is used to enable dynamic HTML content to have popovers added. See this and an informative example. trigger From ae3a9169e077a74baa1e2702ccdd06f8a4c91e3e Mon Sep 17 00:00:00 2001 From: Steve S Date: Mon, 16 Sep 2013 09:16:53 -0500 Subject: [PATCH 6/8] Simplified CSS responsive-invisibility mixin --- less/mixins.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/less/mixins.less b/less/mixins.less index 42523c2aa7..74e7177cd9 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -559,8 +559,8 @@ } .responsive-invisibility() { - display: none !important; - tr& { display: none !important; } + &, + tr&, th&, td& { display: none !important; } } From 66abfe577ef881fcfd5309735a41ac8f582a0a7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Mon, 16 Sep 2013 19:42:52 +0200 Subject: [PATCH 7/8] Fix package.json * Add "js" keyword * Fix homepage link * Bump grunt-contrib-connect to newer version --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 1863251b66..7e6a3ada0f 100644 --- a/package.json +++ b/package.json @@ -2,8 +2,8 @@ "name": "bootstrap" , "description": "Sleek, intuitive, and powerful front-end framework for faster and easier web development." , "version": "3.0.0" - , "keywords": ["bootstrap", "css"] - , "homepage": "http://twbs.github.com/bootstrap/" + , "keywords": ["bootstrap", "css", "js"] + , "homepage": "http://getbootstrap.com" , "author": "Twitter, Inc." , "scripts": { "test": "grunt test" } , "repository": { @@ -22,7 +22,7 @@ , "devDependencies": { "grunt": "~0.4.1" , "grunt-contrib-clean": "~0.5.0" - , "grunt-contrib-connect": "~0.4.1" + , "grunt-contrib-connect": "~0.5.0" , "grunt-contrib-concat": "~0.3.0" , "grunt-contrib-copy": "~0.4.1" , "grunt-contrib-jshint": "~0.6.4" From d7fb54e5fb1db2ab691c1778d15c3a9cb6b2d10d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Mon, 16 Sep 2013 20:40:12 +0200 Subject: [PATCH 8/8] Remove "js" keyword /cc @cvrebert --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7e6a3ada0f..477dba20e1 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "bootstrap" , "description": "Sleek, intuitive, and powerful front-end framework for faster and easier web development." , "version": "3.0.0" - , "keywords": ["bootstrap", "css", "js"] + , "keywords": ["bootstrap", "css"] , "homepage": "http://getbootstrap.com" , "author": "Twitter, Inc." , "scripts": { "test": "grunt test" }