aboutsummaryrefslogtreecommitdiff
path: root/js
AgeCommit message (Collapse)AuthorFilesLines
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
2016-11-24Make JS compliant with the new ESLint rules.Bardi Harborow22-260/+234
2016-11-24Refactor ESLint configuration.Bardi Harborow2-198/+262
2016-11-13Update visual tests.Bardi Harborow10-790/+760
2016-10-31gruntMark Otto2-6/+10
2016-10-31Responsive display utilities (#20934)Mark Otto2-10/+6
* Explore responsive display utils, but with a twist: lowest breakpoint has no breakpoint modifier in the class name * make floats use the same format, add float-none mixin
2016-10-31gruntMark Otto12-47/+88
2016-10-31Making .tooltip('show') throw an error on elements with display:none (#20940)Johann3-0/+28
2016-10-31Move from $.proxy to es6 arrow functions. (#21049)Bardi Harborow6-18/+14
2016-10-30gruntMark Otto2-2/+2
2016-10-30Fix #17964 (#17997)Ilias1-1/+1
* Fix #17964 Some browsers are lazy when updating dom elements after transition effects. This can be fixed by reading element properties such as offsetHeight or offsetWidth. However, creating a function using the Function constructor just to access such element, results in a violation of Content Security Policy (where applied), which in turn crashes the application. This fix actually reverts to the way this was handled in v3 and should work as intended.
2016-10-28Merge pull request #17536 from Johann-S/testPaddingMark Otto1-0/+38
[Fix #17400] Add tests about padding restoration
2016-10-27gruntMark Otto14-47/+47
2016-10-25Use a single class name for opened/expanded/shown state of widgetsJohann-S14-101/+101
2016-10-24Merge pull request #20467 from maxbeatty/v4-dev-17754Mark Otto2-5/+21
add support for ol in tab plugin
2016-10-24Merge pull request #18847 from Johann-S/fix18824Mark Otto2-1/+24
Fix bug multiple accordions collapse
2016-10-19gruntMark Otto11-11/+11
2016-10-19version bump to alpha 5Mark Otto22-42/+42
2016-10-19Fix bug multiple accordions collapseJohann-S2-1/+24
2016-10-16gruntMark Otto4-4/+4
2016-10-12v4: Fix outdated utilites classesvsn4ik3-9/+9
2016-10-11Collapse using card componentJohann-S4-58/+58
2016-10-10Merge pull request #17614 from Johann-S/patchTooltipMark Otto1-1/+1
[Fix #17611][V4] Change destroy to dispose for tooltip in _JQueryInterface
2016-10-09gruntMark Otto2-2/+2
2016-10-09Merge pull request #17568 from Johann-S/fixCollapseHeightMark Otto2-1/+16
[Fix #17555][V4] fix resetting style on closing collapse
2016-10-09gruntMark Otto4-6/+5
2016-10-09Merge branch 'tooltip-arrow' of https://github.com/brnrdog/bootstrap into ↵Mark Otto2-4/+1
brnrdog-tooltip-arrow
2016-10-09gruntMark Otto22-1787/+1633
2016-10-09Merge pull request #20555 from bardiharborow/updatedepsMark Otto5-1461/+1868
Update dependencies, including Babel to v6 and zeroUnits fix.
2016-10-09gruntMark Otto2-3/+3
2016-10-09Update dependencies, including Babel to v6 and zeroUnits fix.Bardi Harborow5-1461/+1868
2016-10-03Fix broken/redirected links, moving to HTTPS where possible. (#20557)Bardi Harborow3-8/+8
2016-09-15replace some profanities (#20715)VarelloThemes1-1/+1
2016-09-07Merge #20563 and #20567J2TeaM2-6/+2
2016-09-07Fix eslint (prefer-template)J2TeaM1-2/+2
2016-09-07Remove classes at one timeJ2TeaM1-8/+3
2016-09-05gruntMark Otto11-11/+11
2016-09-05versionsMark Otto22-42/+42
2016-08-04add support for ol in tab plugin. fixes #17754Max Beatty2-5/+21
2016-08-04prevent navigating to area href when modal target. fixes #18796Max Beatty2-1/+23
2016-07-27grunt distMark Otto11-11/+11
2016-07-27bump versionsMark Otto22-42/+42
2016-06-28Support jQuery v3 in Bootstrap v4 (#20191)Chris Rebert1-4/+4
* bower.json, package.json: Extend jQuery version ranges to include v3 * NuGet: Bump jQuery to v3.0.0.1 * Docs+Examples: Update jQuery to v3.0.0 * Use jQuery v3.0.0 for JS unit tests * Update jqueryVersionCheck to allow jQuery v3.x.x
2016-06-28ScrollSpy unit test: Use single done() in a then() instead of multiple ↵Dave Methvin1-2/+2
done()s (#20198) Fixes test flakiness on OS X Safari and Android when using jQuery 3. Fixes #20182 more Refs #20191
2016-06-27Scrollspy test: Allow for async .then() in jQuery 3; fixes #20182Dave Methvin1-2/+2
Instead of doing a new assert.async(), just do a single one for the entire test and let the .then() be async as well. Closes #20190