aboutsummaryrefslogtreecommitdiff
path: root/js/src
AgeCommit message (Collapse)AuthorFilesLines
2016-09-05versionsMark Otto11-21/+21
2016-07-27bump versionsMark Otto11-21/+21
2016-06-05Enable more rules from ESLint 2.0; refs #19999 (#20076)Chris Rebert1-1/+1
[skip sauce] [skip validator]
2016-06-04Update ESLint to v2.5.3 (#20043)Chris Rebert1-3/+8
Refs #19908. [skip sauce] [skip validator]
2016-05-31Tweak Esc key comment in modal.jsChris Rebert1-1/+1
[skip sauce] [skip validator]
2016-05-31Comply with consistent-return ESLint ruleChris Rebert2-0/+2
2016-05-30Use named constants for magic numbers (#19992)Chris Rebert4-16/+25
Mostly KeyboardEvent.which and MouseEvent.which values. [skip validator]
2016-05-18Remove stray "~" in modal paddingRight value (#19932)akai1-1/+1
[skip validator]
2016-05-11Handle aria-hidden on modal container when showing/hidingPatrick H. Lauke1-0/+2
Fixes #19878
2016-04-21Modal: Remove IE8-specific window.innerWidth workaroundChris Rebert1-7/+1
[skip validator]
2016-02-17Replace jQuery with vanilla JSPatrick H. Lauke1-1/+1
2016-02-16Focus (visually hidden) input radio/checkboxPatrick H. Lauke1-0/+3
This allows for keyboard navigation (e.g. arrow keys left/right to trigger different radio buttons) following an initial mouse click interaction
2016-01-26scrollspy.js: Avoid gratuitous non-ASCII for consistency+compatibilityChris Rebert1-1/+1
Fixes #19028 [skip sauce] [skip validator]
2015-12-24Exempt getUID() from ESLint's no-bitwise ruleChris Rebert1-0/+2
[skip sauce] [skip validator]
2015-12-24Merge pull request #18393 from twbs/dropdown-bitwise-less-tricksyChris Rebert1-1/+1
dropdown.js: Use more straightforward phrasing for index bound check
2015-12-22Modal: Ignore spurious `focus` event that Firefox fires at `document` when ↵Chris Rebert1-2/+3
switching back to its tab Fixes #18365 Refs https://bugzilla.mozilla.org/show_bug.cgi?id=1228802
2015-12-08Update version numbers using npm scriptChris Rebert10-10/+10
Errata from: * 8ce5da30260c1368ae97838fcf010375071a7243 * 5d3144e8fb5c7202991b7614d77dfc00903fcb2e which missed a few numbers. [skip sauce] [skip validator]
2015-12-08manually bump versions because npm script wasn't working for meMark Otto11-11/+11
2015-12-05Fix version numbers is JS files; fixes #18435Chris Rebert11-21/+21
[skip sauce] [skip validator]
2015-12-05Merge pull request #18391 from twbs/double-bitwise-not-commentXhmikosR1-1/+1
util.js: Add comment explaining ~~ trick
2015-12-03Tweak ESLint rules.XhmikosR3-12/+12
2015-11-30dropdown.js: Use more straightforward phrasing for index lower bound checkChris Rebert1-1/+1
[skip sauce] [skip validator]
2015-11-30util.js: Add comment explaining ~~ trickChris Rebert1-1/+1
[skip sauce] [skip validator]
2015-11-14add undefined for nowJacob Thornton1-1/+1
2015-11-14add explicit error for lack of tether in tooltips - fixes #17273Jacob Thornton1-0/+8
2015-11-14Merge branch 'v4-dev' of https://github.com/lincolndbryant/bootstrap into ↵Jacob Thornton1-18/+7
lincolndbryant-v4-dev
2015-11-03Add eslint no-undef rule and resolve errorsJon Tewksbury2-1/+3
2015-10-11Use Page Visibility API in Carousel; fixes #17706Johann-S1-1/+8
Avoids cycling carousels when the page isn't visible. Closes #17710 Refs #15566
2015-10-02Add throw error for undefined method on pluginsJohann-S8-4/+25
2015-09-03Modals: Fix bad paddingRight calculation; fixes #17399muzige20001-1/+1
We want to sum two numbers, not concatenate their stringifications. Closes #17457 by merging a tweaked version of it.
2015-08-31Accept elements as the tooltip / popover contentGleb Mazovetskiy2-22/+25
When a DOM node is passed to an HTML tooltip, the `title` node is only moved if it is not already in the tooltip. Otherwise, `empty()` is used instead of `detach()` before appending the `title` to avoid memory leaks. If a DOM node is passed to a plain text tooltip, its text is copied via jQuery `.text()`. Replaces `.detach()` with `.empty()`, as `.detach()` is almost never useful but instead leaks memory. The difference between `empty` and `detach` is that the latter keeps all the attached jQuery events/data. However, since we do not return the previous children, the user would have to keep these themselves, thus they can `detach()` if necessary. This is a port of https://github.com/twbs/bootstrap/pull/14552 to v4.
2015-08-26fixes #17097: Go back to using jQuery's text and html methods since ↵Jelle Versele2-7/+7
innerText is nonstandard and not present in Firefox Closes #17272 by merging a tweaked version of it. [skip validator]
2015-08-20_removeTetherClasses is no longer referencedlbryant1-6/+0
2015-08-20use Tether addTargetClasses: false option instead of manually removing themlbryant1-12/+7
2015-08-18rewrite tab with new active shitJacob Thornton1-25/+13
2015-08-18Merge branch 'v4' of github.com:twbs/derpstrap into v4Jacob Thornton1-14/+22
2015-08-18some minor alert shitJacob Thornton1-32/+23
2015-08-18js tests passing + eslintJacob Thornton11-91/+112
2015-08-18use proxy not bind in alertJacob Thornton1-1/+1
2015-08-15fix dropdown testJacob Thornton1-2/+2
2015-08-15change modal.js to use is-fixed classes to target padding-rightJacob Thornton1-7/+8
2015-08-12fix modalJacob Thornton1-1/+1
2015-05-13al tests passing, dist rebuilt, w/typecheckerfat1-2/+2
2015-05-13add simple type checker implementationfat8-8/+110
2015-05-13fix #15301fat2-5/+22
2015-05-13add "focus" option for turning off modal focusing #16050fat1-1/+2
2015-05-13address https://github.com/twbs/bootstrap/pull/16135fat1-7/+14
2015-05-13implement global dispose methodfat10-98/+224
2015-05-12grunt test-js, grunt dist-js now workingfat5-14/+20
2015-05-12popover passing as wellfat3-108/+263