| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2015-06-16 | bump version | Mark Otto | 12 | -23/+23 | |
| 2015-06-02 | generalize dropdowns / drop role="menu" | Patrick H. Lauke | 5 | -63/+63 | |
| 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-17 | Use `https` when possible. | XhmikosR | 1 | -1/+1 | |
| 2015-05-10 | Update jQuery to v1.11.3. | XhmikosR | 1 | -5/+5 | |
| 2015-05-05 | phantom.js: switch to unicode characters that work on Windows too. | XhmikosR | 1 | -2/+2 | |
| 2015-05-05 | Comply to the new JSCS rules. | XhmikosR | 2 | -9/+11 | |
| 2015-05-05 | Update JSCS rules. | XhmikosR | 1 | -0/+5 | |
| 2015-05-04 | Merge pull request #16014 from redbmk/issue-16008 | Chris Rebert | 2 | -6/+70 | |
| Multiple tooltip triggers don't play well together | |||||
| 2015-05-03 | Merge pull request #16404 from patrickhlauke/radio-checkbox-kbd-toggle-fix | Patrick H. Lauke | 2 | -18/+9 | |
| Fix radio and checkbox keyboard handling in .btn-group | |||||
| 2015-05-02 | Fix issue where affixed element has incorrect positioning | Carlo Stearns | 2 | -1/+318 | |
| when used with a sticky footer layout. Adds visual test for affix with sticky footer. Closes #15694. Refs #15032. | |||||
| 2015-05-01 | Remove broken/vestigial unit test | Patrick H. Lauke | 1 | -13/+0 | |
| Overall logic for this test appears broken, possibly relating to an older version of Bootstrap that did not require explicit `data-toggle="button"` on single toggle buttons? | |||||
| 2015-05-01 | Fix radio and checkbox keyboard handling | Patrick H. Lauke | 1 | -5/+9 | |
| Fix for problem that emerged from #16226 (`.active` class not actually being applied) and expansion of the script to also correctly handle keyboard interaction with checkboxes in `data-toggle="button"` groups | |||||
| 2015-04-28 | Minor lint tweaks. | XhmikosR | 4 | -43/+43 | |
| 2015-04-27 | Multiple tooltip triggers don't play well together | Braden M. Kelley | 2 | -6/+70 | |
| Fixes issue #16008 | |||||
| 2015-04-27 | Merge pull request #16152 from jarthod/tooltip-placement-viewport-fix | F A T | 2 | -18/+38 | |
| Tooltip/popover: Fix auto placement to use viewport | |||||
| 2015-04-27 | Set `box-sizing: border-box` on .container-viewport in #16142 testcase | Chris Rebert | 1 | -0/+1 | |
| Otherwise, the test doesn't properly fail when the fix is reverted. | |||||
| 2015-04-27 | Compare tooltip right offset to viewport right offset (and not width) | Adrien | 2 | -1/+28 | |
| Closes #16142 by merging it. | |||||
| 2015-04-25 | Throw error when tooltip/popover template has multiple top-level elements | Chris Rebert | 3 | -1/+28 | |
| Closes #16219. | |||||
| 2015-04-21 | Allow viewport option to be a function | Adrien Siami | 2 | -1/+32 | |
| Closes #16151 by merging a rebased version of it that adds docs and 1 more assertion. | |||||
| 2015-04-21 | Merge pull request #16147 from Johann-S/event_inserted | Chris Rebert | 3 | -0/+32 | |
| Fixes #16124. | |||||
| 2015-04-20 | Tooltip: Destroy $tip, $arrow, $viewport to avoid memory leak | Niels Steenbeek | 1 | -0/+6 | |
| Closes #16039. | |||||
| 2015-04-17 | Merge pull request #16226 from patrickhlauke/radio-toggle-kbd-fix | Patrick H. Lauke | 2 | -5/+5 | |
| Fix radio button toggle behavior for keyboard users | |||||
| 2015-04-11 | Fix existing radio button unit test | Patrick H. Lauke | 1 | -2/+2 | |
| 2015-04-11 | Don't preventDefault radio buttons | Patrick H. Lauke | 1 | -3/+3 | |
| as this breaks keyboard navigation for radio button toggles (see https://github.com/twbs/bootstrap/issues/16223) | |||||
| 2015-04-08 | Use .dropdown-menu instead of ARIA roles for dropdown keydown event handler; ↵ | Chris Rebert | 1 | -2/+1 | |
| fixes #16090 | |||||
| 2015-04-08 | Add event after template inserted | Johann-S | 3 | -0/+32 | |
| 2015-03-29 | fixed IE incompatible CSS | Adrien Jarthon | 1 | -1/+1 | |
| 2015-03-29 | Added non-regression test & fixed existing one | Adrien Jarthon | 1 | -12/+33 | |
| 2015-03-26 | JSCS: Add "disallowSpacesInFunctionDeclaration" | Heinrich Fenkart | 1 | -0/+1 | |
| Valid: function a() {} Invalid: function a () {} | |||||
| 2015-03-25 | rm redundant aria-hidden usage from Modals; fixes #16020 | Chris Rebert | 3 | -33/+2 | |
| 2015-03-25 | Tooltip/popover: Fix auto placement to use viewport | Adrien Jarthon | 1 | -6/+5 | |
| Currently, auto placement is using the container dimensions (if provided) or the element's parent to determine where to open the tooltip: ```javascript var $container = this.options.container ? $(this.options.container) : this.$element.parent() var containerDim = this.getPosition($container) ``` This is quite broken in fact, because the parent element could be just a small div outside the element for example, leading in a totally random placement (placing the tooltip on top even if there's no room). And the container can also be outside of the viewport. This fix simply uses the viewport instead, that's the purpose of the viewport actually, to position the tooltip. So the auto placement should use it to find where there's more room. By default this is body, which is good. | |||||
| 2015-03-24 | Merge pull request #15987 from twbs/fix-15972 | Chris Rebert | 3 | -30/+30 | |
| add role="button" to a[data-toggle="collapse"] | |||||
| 2015-03-21 | Fix #16072: Clicking into input field within dropdown no longer closes the ↵ | Emmanuel Bourgerie | 2 | -0/+40 | |
| dropdown Closes #16073 by merging it | |||||
| 2015-03-18 | Merge pull request #16024 from twbs/unnecessary-parsing | Chris Rebert | 2 | -2/+6 | |
| avoid unnecessary HTML string building+parsing | |||||
| 2015-03-16 | v3.3.2 => v3.3.4 | Chris Rebert | 12 | -23/+23 | |
| 2015-03-10 | Fixed proper navigation element selection on backward scrolling (from the ↵ | Maxim Andrukhovych | 2 | -1/+47 | |
| bottom to the top) | |||||
| 2015-03-09 | Merge pull request #16012 from twbs/refs-12761 | Chris Rebert | 10 | -64/+104 | |
| Disable jQuery event aliases when running test suite | |||||
| 2015-03-09 | avoid unnecessary HTML string building+parsing | Chris Rebert | 2 | -2/+6 | |
| 2015-03-09 | Affix: $('body') => $(document.body) | Chris Rebert | 1 | -1/+1 | |
| 2015-03-09 | Disable jQuery event aliases when running test suite | Chris Rebert | 10 | -64/+104 | |
| To ensure that we don't accidentally use any of the aliases. This should prevent any future regressions from #12761. Also updates the test suite since it now can't use these aliases either. | |||||
| 2015-03-09 | Merge pull request #16011 from twbs/fix-15315 | Chris Rebert | 2 | -5/+32 | |
| .collapse('hide') on hidden uninit-ed collapsible no longer shows it | |||||
| 2015-03-07 | add togglable scrollbar-inducing content to Modal visual test | Chris Rebert | 1 | -0/+18 | |
| 2015-03-07 | add static navbar to Modal visual test | Chris Rebert | 1 | -0/+23 | |
| 2015-03-06 | Merge pull request #15999 from twbs/kkirsche-includeTestsReadme | Chris Rebert | 1 | -0/+61 | |
| Document JS test suite basics | |||||
| 2015-03-06 | [Fixes #15951] Document JS test suite basics | Kevin Kirsche | 1 | -0/+61 | |
| X-Ref: #15953 Closes #15952 by merging a tweaked version of it. [skip sauce] [skip validator] | |||||
| 2015-03-06 | Collapse unit test: rm check that no-op hide adds style="height: 0px" | Chris Rebert | 1 | -2/+1 | |
| Appears to be unnecessary and is broken by #16011, which is otherwise quite sane. | |||||
| 2015-03-06 | .collapse('hide') on hidden uninit-ed collapsible no longer shows it; fixes ↵ | Chris Rebert | 2 | -3/+31 | |
| #15315 Thanks to @peterblazejewicz & @Nikita240 Adds unit tests based on #14417 X-Ref: #14282 Closes #15807 | |||||
| 2015-03-03 | Hiding an uninitialized tooltip/popover no longer initializes it; fixes #15874 | Chris Rebert | 4 | -2/+26 | |
| 2015-03-03 | add role="button" to a[data-toggle="collapse"]; fixes #15972 | Chris Rebert | 3 | -30/+30 | |
| 2015-03-03 | rm semicolon for sake of fat's eccentric tastes | Chris Rebert | 1 | -1/+1 | |
| Erratum from #15496 | |||||
