| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2015-12-22 | js/tests/unit/modal.js: Fix typo | Chris Rebert | 1 | -1/+1 | |
| [ci skip] | |||||
| 2015-12-08 | Update version numbers using npm script | Chris Rebert | 10 | -10/+10 | |
| Errata from: * 8ce5da30260c1368ae97838fcf010375071a7243 * 5d3144e8fb5c7202991b7614d77dfc00903fcb2e which missed a few numbers. [skip sauce] [skip validator] | |||||
| 2015-12-08 | manually bump versions because npm script wasn't working for me | Mark Otto | 33 | -33/+33 | |
| 2015-12-05 | Run `grunt`. | XhmikosR | 22 | -32/+32 | |
| [ci skip] | |||||
| 2015-12-05 | Fix version numbers is JS files; fixes #18435 | Chris Rebert | 11 | -21/+21 | |
| [skip sauce] [skip validator] | |||||
| 2015-12-05 | Run `grunt`. | XhmikosR | 2 | -2/+2 | |
| [ci skip] | |||||
| 2015-12-05 | Merge pull request #18391 from twbs/double-bitwise-not-comment | XhmikosR | 1 | -1/+1 | |
| util.js: Add comment explaining ~~ trick | |||||
| 2015-12-03 | Run `grunt`. | XhmikosR | 3 | -3/+3 | |
| [ci skip] | |||||
| 2015-12-03 | Tweak ESLint rules. | XhmikosR | 4 | -18/+21 | |
| 2015-12-03 | tests: bump QUnit to v1.20.0. | XhmikosR | 2 | -1783/+2123 | |
| [skip validator] | |||||
| 2015-11-30 | util.js: Add comment explaining ~~ trick | Chris Rebert | 1 | -1/+1 | |
| [skip sauce] [skip validator] | |||||
| 2015-11-19 | Remove stray </p> from js/tests/visual/scrollspy.html | Chris Rebert | 1 | -1/+0 | |
| [skip sauce] | |||||
| 2015-11-16 | Run `grunt`. | XhmikosR | 2 | -3/+3 | |
| [ci skip] | |||||
| 2015-11-14 | add undefined for now | Jacob Thornton | 1 | -1/+1 | |
| 2015-11-14 | add explicit error for lack of tether in tooltips - fixes #17273 | Jacob Thornton | 3 | -1/+17 | |
| 2015-11-14 | Merge branch 'v4-dev' of https://github.com/lincolndbryant/bootstrap into ↵ | Jacob Thornton | 3 | -31/+10 | |
| lincolndbryant-v4-dev | |||||
| 2015-11-11 | Run `grunt`. | XhmikosR | 4 | -3/+5 | |
| [ci skip] | |||||
| 2015-11-03 | Add eslint no-undef rule and resolve errors | Jon Tewksbury | 3 | -3/+6 | |
| 2015-10-29 | grunt dist | Chris Rebert | 1 | -1/+1 | |
| 2015-10-26 | Remove html5shiv and respond.js from test files. | XhmikosR | 10 | -73/+0 | |
| 2015-10-24 | Switch to jQuery 2.1.4. | XhmikosR | 1 | -5/+4 | |
| Now that we don't support IE 8 it's safe to do that. | |||||
| 2015-10-19 | update grunt-jscs to 2.1.0 to use jscs 2.x | Henry Zhu | 1 | -1/+2 | |
| 2015-10-14 | Run `grunt`. | XhmikosR | 2 | -2/+10 | |
| [ci skip] | |||||
| 2015-10-11 | Use Page Visibility API in Carousel; fixes #17706 | Johann-S | 2 | -2/+17 | |
| Avoids cycling carousels when the page isn't visible. Closes #17710 Refs #15566 | |||||
| 2015-10-09 | grunt dist | Chris Rebert | 16 | -9/+33 | |
| 2015-10-02 | Merge pull request #17616 from Johann-S/ThrowError | Chris Rebert | 16 | -4/+121 | |
| Fix #17612: Throw explicit error when a nonexistent method is invoked | |||||
| 2015-10-02 | Add throw error for undefined method on plugins | Johann-S | 16 | -4/+121 | |
| 2015-09-24 | Specify `root: true` for ESLint. | XhmikosR | 1 | -0/+1 | |
| That way, ESLint won't look in parent dirs for configuration files. | |||||
| 2015-09-23 | Run `grunt`. | XhmikosR | 11 | -11/+11 | |
| 2015-09-05 | Run `grunt`. | XhmikosR | 6 | -21/+30 | |
| 2015-09-03 | Modals: Fix bad paddingRight calculation; fixes #17399 | muzige2000 | 1 | -1/+1 | |
| We want to sum two numbers, not concatenate their stringifications. Closes #17457 by merging a tweaked version of it. | |||||
| 2015-08-31 | Accept elements as the tooltip / popover content | Gleb Mazovetskiy | 4 | -22/+90 | |
| 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-27 | Update QUnit to v1.18.0. | XhmikosR | 2 | -221/+1185 | |
| 2015-08-27 | Remove the obsolete JSHint references. | XhmikosR | 1 | -6/+0 | |
| 2015-08-26 | grunt babel:dev | Chris Rebert | 4 | -7/+7 | |
| 2015-08-26 | fixes #17097: Go back to using jQuery's text and html methods since ↵ | Jelle Versele | 2 | -7/+7 | |
| innerText is nonstandard and not present in Firefox Closes #17272 by merging a tweaked version of it. [skip validator] | |||||
| 2015-08-25 | js/.eslintrc: sort rules by name. | XhmikosR | 1 | -13/+13 | |
| [ci skip] | |||||
| 2015-08-21 | Docs: Update all dropdowns to new HTML structure | Heinrich Fenkart | 1 | -4/+4 | |
| 2015-08-20 | Remove duplicate "spaced-comment" in eslintrc | Boris Kaiser | 1 | -1/+0 | |
| Closes #17100 | |||||
| 2015-08-20 | _removeTetherClasses is no longer referenced | lbryant | 1 | -6/+0 | |
| 2015-08-20 | use Tether addTargetClasses: false option instead of manually removing them | lbryant | 1 | -12/+7 | |
| 2015-08-18 | rewrite tab with new active shit | Jacob Thornton | 5 | -79/+55 | |
| 2015-08-18 | Merge branch 'v4' of github.com:twbs/derpstrap into v4 | Jacob Thornton | 4 | -52/+67 | |
| 2015-08-18 | some minor alert shit | Jacob Thornton | 24 | -140/+155 | |
| 2015-08-18 | Merge branch 'v4' of https://github.com/twbs/derpstrap into v4 | Mark Otto | 16 | -191/+394 | |
| 2015-08-18 | fix modal visual example for js | Jacob Thornton | 1 | -27/+30 | |
| 2015-08-18 | fix dropdown js visual example | Jacob Thornton | 1 | -58/+62 | |
| 2015-08-18 | js tests passing + eslint | Jacob Thornton | 14 | -106/+302 | |
| 2015-08-18 | grunt | Mark Otto | 2 | -2/+2 | |
| 2015-08-18 | add polyfil for bind for tether.js | Jacob Thornton | 1 | -0/+32 | |
