| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2016-07-09 | Update gems. | XhmikosR | 2 | -8/+10 | |
| [skip sauce] | |||||
| 2016-07-08 | Merge pull request #20175 from twbs/dialog-wall | Chris Rebert | 3 | -60/+108 | |
| Add Most Wanted Features entries for <dialog> | |||||
| 2016-07-08 | Add Most Wanted Features entries for <dialog> | Chris Rebert | 1 | -0/+20 | |
| Refs https://bugzil.la/840640 Refs https://webkit.org/b/84635 [skip sauce] | |||||
| 2016-07-08 | Move browser feature requests to new "Most wanted features" section | Chris Rebert | 3 | -60/+88 | |
| 2016-07-07 | Update SCSS-Lint to v0.49.0 (#20250) | Geremia Taglialatela | 3 | -5/+5 | |
| SCSS-Lint 0.49.0 modifies Shorthand linter to report lint if a shorthand of a length not specified in the allowed_shorthands option is used. New defaults include "4" in the list of allowed shorthands, so we are changing our configuration accordingly. Ref: https://github.com/brigade/scss-lint/commit/e283d1689699f581561fea344df3168128c46d7b | |||||
| 2016-07-06 | Merge pull request #20246 from anantoghosh/patch-1 | Patrick H. Lauke | 1 | -1/+1 | |
| Fix typo in 'Reboot' section | |||||
| 2016-07-06 | Fix typo in 'Reboot' section | anantoghosh | 1 | -1/+1 | |
| Changed `box-sizing: border` to `box-sizing: border-box` | |||||
| 2016-07-05 | Merge pull request #20222 from twbs/v4-dev-xmr-deps | XhmikosR | 3 | -625/+205 | |
| Update devDepedencies. | |||||
| 2016-07-04 | Add flex-wrap and overflow-wrap properties to the list of property order in ↵ | morishitter | 1 | -0/+2 | |
| .scss-lint.yml | |||||
| 2016-07-04 | Update devDepedencies. | XhmikosR | 3 | -625/+205 | |
| 2016-06-29 | Merge pull request #20202 from twbs/windows-doesnt-know-how-to-shot-glob | XhmikosR | 1 | -1/+1 | |
| Avoid globbing in jscs npm script for Windows compatibility | |||||
| 2016-06-29 | Merge pull request #20201 from twbs/v4-dev-xmr-deps | XhmikosR | 12 | -43/+43 | |
| Update dependencies. | |||||
| 2016-06-28 | Avoid globbing in jscs npm script for Windows compatibility | Chris Rebert | 1 | -1/+1 | |
| Fixes #20197 [skip sauce] [skip validator] | |||||
| 2016-06-29 | Run `grunt`. | XhmikosR | 7 | -9/+9 | |
| [ci skip] | |||||
| 2016-06-29 | Update devDependencies. | XhmikosR | 3 | -28/+28 | |
| Only grunt-saucelabs is left in order to update grunt to v1.x. | |||||
| 2016-06-29 | Update scss_lint to v0.48.0. | XhmikosR | 2 | -6/+6 | |
| 2016-06-28 | Support jQuery v3 in Bootstrap v4 (#20191) | Chris Rebert | 21 | -30/+30 | |
| * 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-28 | ScrollSpy unit test: Use single done() in a then() instead of multiple ↵ | Dave Methvin | 1 | -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-28 | Merge pull request #20196 from twbs/v4-dev-xmr-shx | XhmikosR | 2 | -790/+108 | |
| Use shx so that the npm scripts work everywhere the same. | |||||
| 2016-06-28 | Use shx so that the npm scripts work everywhere the same. | XhmikosR | 2 | -790/+108 | |
| 2016-06-27 | Mention .list-inline-item change in the migration guide | judetucker | 1 | -0/+1 | |
| Fixes #18813 Closes #20187 [skip sauce] | |||||
| 2016-06-27 | docs/migration.md: Fix "correspending" typo | Chris Rebert | 1 | -1/+1 | |
| [ci skip] | |||||
| 2016-06-27 | Scrollspy test: Allow for async .then() in jQuery 3; fixes #20182 | Dave Methvin | 1 | -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 | |||||
| 2016-06-27 | Allow PRs to be previewed at http://preview.twbsapps.com (#20179) | Chris Rebert | 4 | -6/+39 | |
| 2016-06-27 | Add Wall of Browser Bugs entry for #20161 (#20183) | Chris Rebert | 1 | -0/+10 | |
| Refs https://bugzilla.mozilla.org/show_bug.cgi?id=1282363 | |||||
| 2016-06-26 | Remove unnecessary usage of Promises in non-async ScrollSpy tests (#20180) | Chris Rebert | 1 | -28/+26 | |
| Closes #19906 [skip validator] | |||||
| 2016-06-26 | Fix docs asset file paths in /grunt/configBridge.json (#20178) | Chris Rebert | 2 | -5/+5 | |
| Previously, when running the docs locally, the site, rooted at: http://localhost:9001/ would reference docs assets using relative URLs such as: /../assets/js/vendor/anchor.min.js which is equivalent to: http://localhost:9001/../assets/js/vendor/anchor.min.js which is nonsense, since the root directory has no parent directory. Apparently browsers silently ignore this extra '..', hence why this wasn't noticed until now. But if you adjust Jekyll's `baseurl` setting, this mistake causes incorrect URLs to get generated. This commit corrects the problem by removing the extra '../' from the paths. These paths are also referenced in the Gruntfile, where the fix actually allows us to simplify the code. Previously, in the Gruntfile, we were doing, e.g.: path.join('./docs/assets', '../assets/js/vendor/anchor.min.js') which calculates to: ./docs/assets/../assets/js/vendor/anchor.min.js which can be simplified to: ./docs/assets/js/vendor/anchor.min.js So we can remove the '/assets' suffix from the left argument and the '../' prefix from the right argument and still obtain the same result. | |||||
| 2016-06-26 | grunt dist docs | Chris Rebert | 9 | -14/+13 | |
| [skip sauce] [skip validator] | |||||
| 2016-06-25 | docs/_plugins/bugify.rb: Add support for MS Edge UserVoice ideas (#20176) | Chris Rebert | 2 | -1/+2 | |
| [skip sauce] | |||||
| 2016-06-23 | Remove reference to fixed Chrome bug in accessibility docs (#20145) | Chris Rebert | 1 | -1/+1 | |
| Refs https://bugs.chromium.org/p/chromium/issues/detail?id=454172#c22 [skip sauce] | |||||
| 2016-06-23 | Fix links to A11Y Project posts | Curt Grimes | 2 | -2/+2 | |
| Closes #20165 [skip sauce] | |||||
| 2016-06-22 | Add Wall of Browser Bugs entries for Selectors Level 4 :nth-child() (#20143) | Chris Rebert | 1 | -0/+20 | |
| Refs http://caniuse.com/#feat=css-nth-child-of Refs https://drafts.csswg.org/selectors-4/#the-nth-child-pseudo Refs https://crbug.com/304163 Refs https://bugzil.la/854148 [skip sauce] | |||||
| 2016-06-21 | https://webkit.org/b/158340 has been fixed | Chris Rebert | 1 | -10/+0 | |
| So remove its entry from the Wall. Refs #20012, #20024 Refs http://trac.webkit.org/changeset/202324 [ci skip] | |||||
| 2016-06-20 | Replace grunt-postcss with postcss-cli (#20140) | Chris Rebert | 7 | -211/+1117 | |
| Refs #19990 Continues the degruntification process. Also removes mq4-hover-shim for now, since it doesn't yet implement the standard PostCSS plugin interface. | |||||
| 2016-06-20 | Remove refs to fixed printing-related Chrome bug from browser support docs ↵ | Chris Rebert | 1 | -7/+1 | |
| (#20144) Refs https://bugs.chromium.org/p/chromium/issues/detail?id=273306#c34 [skip sauce] | |||||
| 2016-06-19 | docs/_plugins/highlight_alt.rb: Ignore linenos option since it's broken | Chris Rebert | 1 | -1/+1 | |
| Refs #20005 [skip sauce] | |||||
| 2016-06-19 | docs/_plugins/highlight_alt.rb: Use correct tag name in error message | Chris Rebert | 1 | -2/+2 | |
| 2016-06-19 | Add comparability guard to _assert-ascending(); fixes #20123 (#20142) | Chris Rebert | 1 | -1/+5 | |
| [skip sauce] [skip validator] | |||||
| 2016-06-19 | package.json: engines: Require Node.js >= 4 (#20141) | Chris Rebert | 1 | -1/+1 | |
| Refs #17652 | |||||
| 2016-06-16 | Contextual background-inverse text color fix | Jerad Rutnam | 1 | -4/+2 | |
| 2016-06-12 | Merge branch 'v4-dev' of https://github.com/twbs/bootstrap into v4-dev | Mark Otto | 1 | -0/+1 | |
| 2016-06-12 | follow up fix to #17593 | Mark Otto | 1 | -5/+1 | |
| 2016-06-12 | Merge pull request #19977 from zalog/patch-11 | Mark Otto | 1 | -0/+1 | |
| Add .flex-*-unordered classes to reset Flexbox `order` CSS property | |||||
| 2016-06-12 | Fixes #17193: Remove mention and link to non-existant transitions plugin; ↵ | Mark Otto | 1 | -1/+1 | |
| that intro paragraph was two dupe sentences | |||||
| 2016-06-12 | Fixes #17089 a bit | Mark Otto | 2 | -5/+15 | |
| 2016-06-12 | Merge branch 'v4-dev' of https://github.com/twbs/bootstrap into v4-dev | Mark Otto | 61 | -8483/+828 | |
| 2016-06-10 | Strip out UMD & CJS in favor of ES6 modules (#20072) | Chris Rebert | 26 | -7702/+1 | |
| 2016-06-09 | Re-use 'between' mixin for 'only' mixin | heath3 | 1 | -11/+9 | |
| Keeps the code DRY in the same way 'between' uses 'up' and 'down'. | |||||
| 2016-06-07 | Add Wall of Browser Bugs entries for #12832 (#20089) | Chris Rebert | 1 | -0/+20 | |
| Add Wall of Browser Bugs entries for #12832 | |||||
| 2016-06-07 | https://crbug.com/460200 has been fixed! (#20090) | Chris Rebert | 1 | -10/+0 | |
| So remove its entry from the Wall of Browser Bugs Refs #15832 [skip sauce] [skip validator] | |||||
