aboutsummaryrefslogtreecommitdiff
path: root/js
AgeCommit message (Collapse)AuthorFilesLines
2016-12-31Update visual test carouselJohann-S1-4/+4
2016-12-30fix navbar in dropdown visual test fileMark Otto1-4/+7
2016-12-31Extend ESLint to cover all JS files and drop JSCS.Bardi Harborow2-42/+7
2016-12-29Close #21249 : Add a Unit test for #21227Johann-S2-0/+62
2016-12-28Merge branch 'twbs/v4-dev' into dropdown-keyboardPierre-Denis Vanduynslager64-4783/+5712
2016-12-27gruntMark Otto2-1/+5
2016-12-27update click state when hiding so can be shown again by trigger. fixes #16732Max Beatty2-0/+25
2016-12-25gruntMark Otto2-2/+3
2016-12-24[Fix #19849] Tabs are opened even if disabled. (#20795)Alessandro Rodi2-1/+41
* [Fix #19849] Tabs are opened even if disabled. * fix hund code review hints * rollback hound issues because Travis fails
2016-12-24gruntMark Otto4-4/+5
2016-12-23Closes: #21412: Fix unit test for carouselJohann-S1-1/+0
2016-12-23Carousel: Only prevents default for ARROW_LEFT and ARROW_RIGHT keysMatheus Azzi2-0/+33
Fixes 2 bugs: 1. All keydowns were being prevented. Because of that the user wasn't able to navigate in the whole page using ARROW_UP/ARROW_DOWN. 2. Even when is an input or textarea the keydowns were being prevented. Because of that the user wasn't able to type any text on these elements.
2016-12-22scrollspy: fix wrong activation of all nested links (#20304)mr-july1-1/+1
* fix wrong activation of all nested links; just first level item should be activated * use template instead of string concatenation
2016-12-21Merge branch 'patch-1' of https://github.com/tracker1/bootstrap into ↵Mark Otto3-3/+3
tracker1-patch-1
2016-12-19gruntMark Otto14-44/+44
2016-12-19Merge branch 'fix-20982' of https://github.com/Starsam80/bootstrap into ↵Mark Otto15-105/+105
Starsam80-fix-20982
2016-12-07gruntMark Otto2-13/+29
2016-12-07Fix tabs by using new classesStarsam801-3/+3
2016-12-07Rename `.active` to `.show`Starsam8014-102/+102
2016-12-04remove commented out codeMark Otto1-4/+0
2016-12-04Merge branch 'v4-dev' into carouselMark Otto32-97/+378
2016-12-04fix js for previousMark Otto1-2/+2
2016-12-04pull in js changes from #18830Mark Otto1-14/+32
2016-12-02gruntMark Otto8-16/+53
2016-12-02[V4] Throw error when a plugin is in transition (#17823)Johann8-23/+144
* Throw error when a plugin is in transition * Add unit tests about plugins in transition
2016-11-29gruntMark Otto2-1/+6
2016-11-29Hide popovers when their containing modal is closed. (#21227)Bardi Harborow1-0/+6
2016-11-28gruntMark Otto2-5/+2
2016-11-28Use multi-selector to remove the same event handler (#20642)Juno_okyo1-4/+1
2016-11-28Merge branch 'v4-js-carousel' of https://github.com/J2TeaM/bootstrap into ↵Mark Otto9-23/+12
J2TeaM-v4-js-carousel
2016-11-28gruntMark Otto2-2/+2
2016-11-27Closes #21055: Prevents ScrollSpy from clearing active item when Safari ↵Rob Ruana2-1/+45
rubberbands (#21056) When the rubberband effect causes Safari to scroll past the top of the page, the value of scrollTop becomes negative. If the offset of the first ScrollSpy target is 0 - essentially if the target is at the top of the page - then ScrollSpy should not clear the active item. Conceptually, the first item should remain active when rubberbanding past the top of the page. This commit fixes issue #21055 by verifying the first scrollspy target is not at the top of the page before clearing the active nav-item.
2016-11-26gruntMark Otto2-4/+8
2016-11-26Merge branch 'container-tooltip-option' into v4-devMark Otto1-3/+7
2016-11-26gruntMark Otto4-5/+4
2016-11-26Merge pull request #18900 from vlastikcz/v4-dev-buttonChangeMark Otto2-1/+21
Button toggling - trigger change event on input. Fixes #16673, fixes #17599.
2016-11-26Merge pull request #19058 from Johann-S/carouselInputMark Otto2-2/+33
Carousel - Do not prevent on keydown for input and textarea
2016-11-26gruntMark Otto1-1/+1
2016-11-26Follow up fix to #19953 for linting error in buildsMark Otto1-1/+1
See https://travis-ci.org/twbs/bootstrap/jobs/179010884 for build failure
2016-11-26gruntMark Otto2-2/+2
2016-11-26Merge branch 'v4-dev-18796' of https://github.com/maxbeatty/bootstrap into ↵Mark Otto2-1/+23
maxbeatty-v4-dev-18796
2016-11-26gruntMark Otto2-6/+2
2016-11-26Dropdown perf - on keyboard nav, find active item in the active dropdown ↵Pierre-Denis Vanduynslager1-5/+1
rather than the whole document (#19953)
2016-11-26Implement container option for tooltips and popovers.andyexeter1-3/+7
2016-11-25Add test unit to check logic of ignoreBackdropClick (#18245)Johann1-0/+13
2016-11-25Added a virtual testmatus3-3/+14
2016-11-25Scrollspy selecting the last element when at the bottom of the page (fixes ↵matus1-1/+7
#17739)
2016-11-25gruntMark Otto17-30/+30
2016-11-25Merge branch 'eslint' of https://github.com/bardiharborow/bootstrap into ↵Mark Otto24-458/+496
bardiharborow-eslint
2016-11-25[Fix #17371][V4] Deactivating dropdown links in nav tab (#17642)Matt Hernandez2-1/+33
* Fix bug with dropdown tab links not deactivating when other tab or dropdown link is clicked * Revise bug fix for more stability