| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2015-06-08 | Use new gradient syntax in justified nav example; fixes #16598 | Kevin Kirsche | 1 | -2/+1 | |
| Closes #16599 by merging a tweaked version of it. | |||||
| 2015-06-02 | generalize dropdowns / drop role="menu" | Patrick H. Lauke | 7 | -24/+24 | |
| as role="menu" is a very specific (and strict) ARIA pattern for desktop-like application menus, and our dropdowns are often used as pure navigation dropdowns, this change abandons ARIA menus for a more open-ended and light-weight approach (see http://heydonworks.com/practical_aria_examples/#submenus and http://www.w3.org/WAI/tutorials/menus/flyout/#improve-screen-reader-support-using-wai-aria) note that in dropdown.js, switched to now target ``.dropdown-menu`` instead of ``role["menu"]`` - this also prevents bootstrap scripts from "bleeding" into non-bootstrap components on the same page. also removed the ``role=["listbox"]`` part, which appears to be vestigial/unused (only place in bootstrap that uses that role are carousels, and their key handling is done separately) | |||||
| 2015-05-29 | ensure divider list items have role="separator" | Patrick H. Lauke | 7 | -10/+10 | |
| http://www.w3.org/TR/wai-aria/roles#separator | |||||
| 2015-05-10 | Update jQuery to v1.11.3. | XhmikosR | 14 | -14/+14 | |
| 2015-04-26 | Run `grunt`. | XhmikosR | 1 | -1/+1 | |
| 2015-04-24 | Ensure .form-inline in non-responsive example doesn't stack; fixes #15977 | Chris Rebert | 1 | -0/+58 | |
| 2015-04-23 | Update Holder.js to v2.6.0. | XhmikosR | 2 | -2/+2 | |
| [ci skip] | |||||
| 2015-02-25 | Prevent collapsed navbar in Non-responsive Example | TJ | 1 | -8/+4 | |
| Closes #15291 by merging it. | |||||
| 2015-02-24 | Document justified navbar for #15906 | Kevin Kirsche | 1 | -0/+2 | |
| Document in the source code that the justified nav is meant for single line list items only. This should help prevent Issues like #15906 in the future. | |||||
| 2015-02-24 | Fix #15911: Clear the floats and move the padding to the header | Mark Otto | 2 | -2/+2 | |
| 2015-02-16 | Use just holder.js instead of docs.min.js in examples when possible | Chris Rebert | 2 | -2/+4 | |
| And add explanatory comments to the Carousel & Dashboard examples regarding holder.js [skip sauce] | |||||
| 2015-02-16 | Remove docs.min.js from Blog & Cover examples since it's unnecessary. | Chris Rebert | 2 | -2/+0 | |
| 2015-02-16 | Fix carousel example images after c08bf4ba8b968ecda295391b41d5e965b642ba7c. | XhmikosR | 2 | -17/+3 | |
| The revert was incomplete. | |||||
| 2015-02-08 | Merge pull request #15648 from Nikita240/master | Mark Otto | 1 | -6/+6 | |
| Improve image layout in the carousel example. | |||||
| 2015-02-03 | Merge pull request #15658 from kkirsche/patch-3 | XhmikosR | 19 | -0/+19 | |
| Fix issue #15601 — Position of Charset, X-UA-Compatible, and Viewport Meta Tags | |||||
| 2015-02-02 | Fix issue #15601 — Position of X-UA-Compatible | Kevin Kirsche | 19 | -0/+19 | |
| Fix issue #15601 — Position of X-UA-Compatible, charset and viewport Add comment to all examples The non-responsive is correctly saying 2 instead of 3 | |||||
| 2015-01-27 | Update non-responsive.css | Christian | 1 | -1/+1 | |
| Fix typo on Utilize | |||||
| 2015-01-23 | Fix image order in carousel example | Nikita Rushmanov | 1 | -4/+4 | |
| When the screen is shrunk below the md threshold, all the featurette columns stack. However, since the second featurette is "backwards", when stacked the second featurette looked awkward as the image came before the heading. | |||||
| 2015-01-23 | Center images in carousel example | Nikita Rushmanov | 1 | -3/+3 | |
| In order to see the changes, you must shrink the browser to below the md threshold. | |||||
| 2015-01-21 | keep the base64 | Mark Otto | 2 | -3/+3 | |
| 2015-01-21 | Carousel example: move the Base64 images outside of the HTML. | XhmikosR | 3 | -6/+20 | |
| Use a simple blank.gif and change the background color instead of duplicating stuff. | |||||
| 2015-01-07 | Update jQuery to v1.11.2. | XhmikosR | 14 | -14/+14 | |
| 2014-11-30 | Example: minor image compression improvements. | XhmikosR | 11 | -0/+0 | |
| [ci skip] | |||||
| 2014-11-30 | Bump Glyphicons to v1.9 | Mark Otto | 1 | -6/+9 | |
| 2014-11-30 | Fixes #15096: Fix navbar forms in the non-responsive example | Mark Otto | 2 | -1/+83 | |
| 2014-11-29 | Alternate fix for #15250 with a more descriptive theme jumbotron | Mark Otto | 1 | -3/+2 | |
| 2014-11-14 | Redundant role="navigation" on <nav>s | Patrick H. Lauke | 12 | -14/+14 | |
| plus one example that still used the old <div role="navigation"> and a fix-up of the callout as per https://github.com/twbs/bootstrap/issues/15109 | |||||
| 2014-11-14 | Redundant role="form" on <form>s | Patrick H. Lauke | 2 | -2/+2 | |
| 2014-11-12 | Fixed a typo in Sign-in page example | gitaeks | 1 | -1/+1 | |
| Fixed a typo in Sign-in page example http://getbootstrap.com/examples/signin/ | |||||
| 2014-11-12 | Merge pull request #15087 from patrickhlauke/dropdown-accessibility-tweaks | Heinrich Fenkart | 7 | -10/+10 | |
| Wash-up of some stray dropdown examples | |||||
| 2014-11-11 | Wash-up of some stray dropdown examples | Patrick H. Lauke | 7 | -10/+10 | |
| adding explicit aria-expanded="false" initial state (so they're correctly announced by AT as being collapsed), and - in the case of old-school use of <a> - role="button" | |||||
| 2014-11-11 | aria-hidden added to some stray glyphicons | Patrick H. Lauke | 2 | -4/+4 | |
| plus minor tweak to customizer's generated alerts | |||||
| 2014-11-11 | Assorted accessibility (and some consistency) fixes for documentation | Patrick H. Lauke | 8 | -27/+35 | |
| Closes #14951 by merging it. | |||||
| 2014-10-30 | Examples: Make use of the `footer` tag instead of a `div`. | XhmikosR | 5 | -10/+10 | |
| 2014-10-28 | Safari v8.0 still suffers from Justified Nav rendering bug | Chris Rebert | 1 | -1/+1 | |
| 2014-10-28 | add missing hrefs to <a>s in docs+examples | Chris Rebert | 1 | -1/+1 | |
| 2014-10-26 | Removed unnecessary new lines that were inconsistent with current style. | Baraa | 5 | -19/+0 | |
| 2014-10-24 | Merge pull request #14857 from twbs/fix-14856 | Mark Otto | 1 | -8/+8 | |
| Fix #14856 | |||||
| 2014-10-23 | Fix a small typo in comment. | XhmikosR | 19 | -19/+19 | |
| [ci skip] | |||||
| 2014-10-22 | Fix #14856 | Chris Rebert | 1 | -8/+8 | |
| [skip sauce] | |||||
| 2014-09-26 | Add type to buttons in tooltip-viewport example | Heinrich Fenkart | 1 | -8/+8 | |
| 2014-09-21 | the justified nav bug is still present in Safari v7.1 | Chris Rebert | 1 | -1/+1 | |
| 2014-09-16 | Merge pull request #14577 from twbs/pagination-role-nav | Chris Rebert | 1 | -4/+6 | |
| Wrap .pagination & .pager in <nav> to improve accessibility | |||||
| 2014-09-08 | Wrap .pagination & .pager in <nav> to improve accessibility | Chris Rebert | 1 | -4/+6 | |
| 2014-09-09 | ARIA support for collapse | Patrick H. Lauke | 11 | -22/+22 | |
| Added handling of aria-expanded=true/false to collapse.js, updated documentation to include advice on making expand/collapse controls accessible, updated examples and javascript documentation to use aria-expanded and aria-controls (when targetting single collapsible element, using ID rather than class selector) Closes #14147. Closes #14153. | |||||
| 2014-09-04 | Replace nonexistent .col-6 classes in offcanvas example with .col-xs-6 | thr3-arendt | 1 | -6/+6 | |
| Fixes #14500 | |||||
| 2014-08-15 | consistently use <nav> instead of <div> for .navbar in docs | Chris Rebert | 11 | -26/+26 | |
| 2014-07-27 | Fix #14164: move Windows Phone 8 IE10 viewport bug workaround script to ↵ | Chris Rebert | 19 | -72/+42 | |
| footer of pages | |||||
| 2014-07-22 | Run `grunt`. | XhmikosR | 1 | -1/+0 | |
| 2014-07-10 | Fix text on ".progress-bar .sr-only" elements. | vsn4ik | 1 | -1/+1 | |
