]> git.ipfire.org Git - thirdparty/bootstrap.git/log
thirdparty/bootstrap.git
9 years agoRun `grunt`. 20201/head
XhmikosR [Wed, 29 Jun 2016 05:55:45 +0000 (08:55 +0300)] 
Run `grunt`.

[ci skip]

9 years agoUpdate devDependencies.
XhmikosR [Wed, 29 Jun 2016 05:54:25 +0000 (08:54 +0300)] 
Update devDependencies.

Only grunt-saucelabs is left in order to update grunt to v1.x.

9 years agoUpdate scss_lint to v0.48.0.
XhmikosR [Tue, 28 Jun 2016 19:40:59 +0000 (22:40 +0300)] 
Update scss_lint to v0.48.0.

9 years agoSupport jQuery v3 in Bootstrap v4 (#20191)
Chris Rebert [Wed, 29 Jun 2016 05:19:46 +0000 (22:19 -0700)] 
Support jQuery v3 in Bootstrap v4 (#20191)

* 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

9 years agoScrollSpy unit test: Use single done() in a then() instead of multiple done()s (...
Dave Methvin [Tue, 28 Jun 2016 20:24:28 +0000 (13:24 -0700)] 
ScrollSpy unit test: Use single done() in a then() instead of multiple done()s (#20198)

Fixes test flakiness on OS X Safari and Android when using jQuery 3.
Fixes #20182 more
Refs #20191

9 years agoMerge pull request #20196 from twbs/v4-dev-xmr-shx
XhmikosR [Tue, 28 Jun 2016 19:01:46 +0000 (22:01 +0300)] 
Merge pull request #20196 from twbs/v4-dev-xmr-shx

Use shx so that the npm scripts work everywhere the same.

9 years agoUse shx so that the npm scripts work everywhere the same. 20196/head
XhmikosR [Tue, 28 Jun 2016 15:59:26 +0000 (18:59 +0300)] 
Use shx so that the npm scripts work everywhere the same.

9 years agoMention .list-inline-item change in the migration guide
judetucker [Mon, 27 Jun 2016 21:14:26 +0000 (14:14 -0700)] 
Mention .list-inline-item change in the migration guide

Fixes #18813
Closes #20187

[skip sauce]

9 years agodocs/migration.md: Fix "correspending" typo
Chris Rebert [Tue, 28 Jun 2016 06:00:46 +0000 (23:00 -0700)] 
docs/migration.md: Fix "correspending" typo

[ci skip]

9 years agoScrollspy test: Allow for async .then() in jQuery 3; fixes #20182
Dave Methvin [Tue, 28 Jun 2016 01:41:00 +0000 (21:41 -0400)] 
Scrollspy test: Allow for async .then() in jQuery 3; fixes #20182

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

9 years agoAllow PRs to be previewed at http://preview.twbsapps.com (#20179)
Chris Rebert [Mon, 27 Jun 2016 21:19:10 +0000 (14:19 -0700)] 
Allow PRs to be previewed at http://preview.twbsapps.com (#20179)

9 years agoAdd Wall of Browser Bugs entry for #20161 (#20183)
Chris Rebert [Mon, 27 Jun 2016 08:12:00 +0000 (01:12 -0700)] 
Add Wall of Browser Bugs entry for #20161 (#20183)

Refs https://bugzilla.mozilla.org/show_bug.cgi?id=1282363

9 years agoRemove unnecessary usage of Promises in non-async ScrollSpy tests (#20180)
Chris Rebert [Mon, 27 Jun 2016 04:33:07 +0000 (21:33 -0700)] 
Remove unnecessary usage of Promises in non-async ScrollSpy tests (#20180)

Closes #19906

[skip validator]

9 years agoFix docs asset file paths in /grunt/configBridge.json (#20178)
Chris Rebert [Sun, 26 Jun 2016 23:42:13 +0000 (16:42 -0700)] 
Fix docs asset file paths in /grunt/configBridge.json (#20178)

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.

9 years agogrunt dist docs
Chris Rebert [Sun, 26 Jun 2016 23:13:26 +0000 (16:13 -0700)] 
grunt dist docs

[skip sauce]
[skip validator]

9 years agodocs/_plugins/bugify.rb: Add support for MS Edge UserVoice ideas (#20176)
Chris Rebert [Sun, 26 Jun 2016 04:32:23 +0000 (21:32 -0700)] 
docs/_plugins/bugify.rb: Add support for MS Edge UserVoice ideas (#20176)

[skip sauce]

9 years agoRemove reference to fixed Chrome bug in accessibility docs (#20145)
Chris Rebert [Fri, 24 Jun 2016 06:19:06 +0000 (23:19 -0700)] 
Remove reference to fixed Chrome bug in accessibility docs (#20145)

Refs https://bugs.chromium.org/p/chromium/issues/detail?id=454172#c22

[skip sauce]

9 years agoFix links to A11Y Project posts
Curt Grimes [Fri, 24 Jun 2016 03:39:03 +0000 (22:39 -0500)] 
Fix links to A11Y Project posts

Closes #20165

[skip sauce]

9 years agoAdd Wall of Browser Bugs entries for Selectors Level 4 :nth-child() (#20143)
Chris Rebert [Wed, 22 Jun 2016 08:20:01 +0000 (01:20 -0700)] 
Add Wall of Browser Bugs entries for Selectors Level 4 :nth-child() (#20143)

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]

9 years agohttps://webkit.org/b/158340 has been fixed
Chris Rebert [Wed, 22 Jun 2016 06:20:02 +0000 (23:20 -0700)] 
https://webkit.org/b/158340 has been fixed

So remove its entry from the Wall.
Refs #20012, #20024
Refs http://trac.webkit.org/changeset/202324

[ci skip]

9 years agoReplace grunt-postcss with postcss-cli (#20140)
Chris Rebert [Mon, 20 Jun 2016 23:18:21 +0000 (16:18 -0700)] 
Replace grunt-postcss with postcss-cli (#20140)

Refs #19990
Continues the degruntification process.

Also removes mq4-hover-shim for now,
since it doesn't yet implement the standard PostCSS plugin interface.

9 years agoRemove refs to fixed printing-related Chrome bug from browser support docs (#20144)
Chris Rebert [Mon, 20 Jun 2016 07:48:02 +0000 (00:48 -0700)] 
Remove refs to fixed printing-related Chrome bug from browser support docs (#20144)

Refs https://bugs.chromium.org/p/chromium/issues/detail?id=273306#c34

[skip sauce]

9 years agodocs/_plugins/highlight_alt.rb: Ignore linenos option since it's broken
Chris Rebert [Mon, 20 Jun 2016 06:02:27 +0000 (23:02 -0700)] 
docs/_plugins/highlight_alt.rb: Ignore linenos option since it's broken

Refs #20005
[skip sauce]

9 years agodocs/_plugins/highlight_alt.rb: Use correct tag name in error message
Chris Rebert [Mon, 20 Jun 2016 06:01:10 +0000 (23:01 -0700)] 
docs/_plugins/highlight_alt.rb: Use correct tag name in error message

9 years agoAdd comparability guard to _assert-ascending(); fixes #20123 (#20142)
Chris Rebert [Mon, 20 Jun 2016 05:23:16 +0000 (22:23 -0700)] 
Add comparability guard to _assert-ascending(); fixes #20123 (#20142)

[skip sauce]
[skip validator]

9 years agopackage.json: engines: Require Node.js >= 4 (#20141)
Chris Rebert [Mon, 20 Jun 2016 05:09:29 +0000 (22:09 -0700)] 
package.json: engines: Require Node.js >= 4 (#20141)

Refs #17652

9 years agoMerge branch 'v4-dev' of https://github.com/twbs/bootstrap into v4-dev
Mark Otto [Mon, 13 Jun 2016 04:54:35 +0000 (21:54 -0700)] 
Merge branch 'v4-dev' of https://github.com/twbs/bootstrap into v4-dev

9 years agofollow up fix to #17593
Mark Otto [Mon, 13 Jun 2016 04:54:15 +0000 (21:54 -0700)] 
follow up fix to #17593

9 years agoMerge pull request #19977 from zalog/patch-11
Mark Otto [Mon, 13 Jun 2016 04:27:11 +0000 (21:27 -0700)] 
Merge pull request #19977 from zalog/patch-11

Add .flex-*-unordered classes to reset Flexbox `order` CSS property

9 years agoFixes #17193: Remove mention and link to non-existant transitions plugin; that intro...
Mark Otto [Mon, 13 Jun 2016 04:25:04 +0000 (21:25 -0700)] 
Fixes #17193: Remove mention and link to non-existant transitions plugin; that intro paragraph was two dupe sentences

9 years agoFixes #17089 a bit
Mark Otto [Mon, 13 Jun 2016 04:18:23 +0000 (21:18 -0700)] 
Fixes #17089 a bit

9 years agoMerge branch 'v4-dev' of https://github.com/twbs/bootstrap into v4-dev
Mark Otto [Mon, 13 Jun 2016 04:17:14 +0000 (21:17 -0700)] 
Merge branch 'v4-dev' of https://github.com/twbs/bootstrap into v4-dev

9 years agoStrip out UMD & CJS in favor of ES6 modules (#20072)
Chris Rebert [Fri, 10 Jun 2016 16:28:03 +0000 (09:28 -0700)] 
Strip out UMD & CJS in favor of ES6 modules (#20072)

9 years agoAdd Wall of Browser Bugs entries for #12832 (#20089)
Chris Rebert [Wed, 8 Jun 2016 06:50:00 +0000 (23:50 -0700)] 
Add Wall of Browser Bugs entries for #12832 (#20089)

Add Wall of Browser Bugs entries for #12832

9 years agohttps://crbug.com/460200 has been fixed! (#20090)
Chris Rebert [Wed, 8 Jun 2016 04:15:12 +0000 (21:15 -0700)] 
https://crbug.com/460200 has been fixed! (#20090)

So remove its entry from the Wall of Browser Bugs
Refs #15832

[skip sauce]
[skip validator]

9 years agoISSUE_TEMPLATE.md: Fix "questons" typo
Chris Rebert [Sun, 5 Jun 2016 22:01:09 +0000 (15:01 -0700)] 
ISSUE_TEMPLATE.md: Fix "questons" typo

[ci skip]

9 years agoEnable more rules from ESLint 2.0; refs #19999 (#20076)
Chris Rebert [Sun, 5 Jun 2016 18:17:05 +0000 (11:17 -0700)] 
Enable more rules from ESLint 2.0; refs #19999 (#20076)

[skip sauce]
[skip validator]

9 years agoRemove unused exec:npmUpdate Grunt task (#20074)
Chris Rebert [Sun, 5 Jun 2016 04:55:28 +0000 (21:55 -0700)] 
Remove unused exec:npmUpdate Grunt task (#20074)

[skip sauce]
[skip validator]

9 years agoBump shelljs to ^0.7.0 (#20073)
Chris Rebert [Sun, 5 Jun 2016 04:45:59 +0000 (21:45 -0700)] 
Bump shelljs to ^0.7.0 (#20073)

[skip sauce]
[skip validator]

9 years agorm -r node_modules && npm install && npm run shrinkwrap
Chris Rebert [Sun, 5 Jun 2016 01:21:36 +0000 (18:21 -0700)] 
rm -r node_modules && npm install && npm run shrinkwrap

9 years agogrunt
Chris Rebert [Sun, 5 Jun 2016 01:21:15 +0000 (18:21 -0700)] 
grunt

[ci skip]

9 years agoUpgrade to latest version of JSCS (v3.0.4) (#20070)
Chris Rebert [Sun, 5 Jun 2016 00:55:21 +0000 (17:55 -0700)] 
Upgrade to latest version of JSCS (v3.0.4) (#20070)

Fixes #20002

[skip sauce]
[skip validator]

9 years agoKill the grunt-jscs middleman; use JSCS directly instead (#20069)
Chris Rebert [Sun, 5 Jun 2016 00:46:36 +0000 (17:46 -0700)] 
Kill the grunt-jscs middleman; use JSCS directly instead (#20069)

Refs #19990

[skip sauce]
[skip validator]

9 years agoUpdate ESLint to v2.11.1 (latest stable) (#20068)
Chris Rebert [Sun, 5 Jun 2016 00:08:59 +0000 (17:08 -0700)] 
Update ESLint to v2.11.1 (latest stable) (#20068)

Fixes #19908

[skip sauce]
[skip validator]

9 years agoUpdate ESLint to v2.10.2 (#20063)
Chris Rebert [Sat, 4 Jun 2016 23:52:06 +0000 (16:52 -0700)] 
Update ESLint to v2.10.2 (#20063)

Refs #19908

[skip sauce]
[skip validator]

9 years agoUpgrade ESLint to v2.9.0 (#20047)
Chris Rebert [Sat, 4 Jun 2016 22:07:16 +0000 (15:07 -0700)] 
Upgrade ESLint to v2.9.0 (#20047)

Refs #19908

[skip sauce]
[skip validator]

9 years agoUpdate ESLint to v2.8.0 (#20045)
Chris Rebert [Sat, 4 Jun 2016 21:52:07 +0000 (14:52 -0700)] 
Update ESLint to v2.8.0 (#20045)

Refs #19908

[skip sauce]
[skip validator]

9 years agoUpgrade ESLint to v2.7.0 (#20044)
Chris Rebert [Sat, 4 Jun 2016 21:39:56 +0000 (14:39 -0700)] 
Upgrade ESLint to v2.7.0 (#20044)

Refs #19908

[skip sauce]
[skip validator]

9 years agoUpdate ESLint to v2.5.3 (#20043)
Chris Rebert [Sat, 4 Jun 2016 21:28:34 +0000 (14:28 -0700)] 
Update ESLint to v2.5.3 (#20043)

Refs #19908.

[skip sauce]
[skip validator]

9 years agoUpgrade ESLint to v2.4.0 (#20042)
Chris Rebert [Sat, 4 Jun 2016 21:13:36 +0000 (14:13 -0700)] 
Upgrade ESLint to v2.4.0 (#20042)

Refs #19908.

[skip sauce]
[skip validator]

9 years agoUpgrade ESLint to v2.3.0 (#20041)
Chris Rebert [Sat, 4 Jun 2016 21:01:12 +0000 (14:01 -0700)] 
Upgrade ESLint to v2.3.0 (#20041)

Refs #19908

[skip sauce]

9 years agoMerge pull request #19109 from twbs/fix-18569
Chris Rebert [Sat, 4 Jun 2016 20:25:37 +0000 (13:25 -0700)] 
Merge pull request #19109 from twbs/fix-18569

Integrate postcss-flexbugs-fixes into build
Refs #18569.

9 years agoUpdate npm shrinkwrap 19109/head
Chris Rebert [Sat, 4 Jun 2016 20:02:25 +0000 (13:02 -0700)] 
Update npm shrinkwrap

9 years agoAdd docs regarding postcss-flexbugs-fixes dependency
Chris Rebert [Sun, 7 Feb 2016 09:09:01 +0000 (01:09 -0800)] 
Add docs regarding postcss-flexbugs-fixes dependency

9 years agoIntegrate postcss-flexbugs-fixes into build; fixes #18569
Chris Rebert [Sun, 7 Feb 2016 08:34:29 +0000 (00:34 -0800)] 
Integrate postcss-flexbugs-fixes into build; fixes #18569

9 years agohttps://bugzil.la/1278000 was marked as dupe of https://bugzil.la/577785
Chris Rebert [Sat, 4 Jun 2016 07:27:56 +0000 (00:27 -0700)] 
https://bugzil.la/1278000 was marked as dupe of https://bugzil.la/577785

Update Wall of Browser Bugs accordingly.
Refs #19670

[ci skip]

9 years agoAdd Wall of Browser Bugs entry for #19670 for Edge (#20037)
Chris Rebert [Sat, 4 Jun 2016 06:39:32 +0000 (23:39 -0700)] 
Add Wall of Browser Bugs entry for #19670 for Edge (#20037)

See https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/7787318/
Refs #19670

[skip sauce]

9 years agoAdd :dir() pseudo-class feature requests to Wall of Browser Bugs (#19984)
Chris Rebert [Sat, 4 Jun 2016 06:17:51 +0000 (23:17 -0700)] 
Add :dir() pseudo-class feature requests to Wall of Browser Bugs (#19984)

Refs https://developer.mozilla.org/en-US/docs/Web/CSS/:dir
[skip sauce]

9 years agoAdd Wall of Browser Bugs entry for #19670 for Firefox (#20036)
Chris Rebert [Sat, 4 Jun 2016 06:15:19 +0000 (23:15 -0700)] 
Add Wall of Browser Bugs entry for #19670 for Firefox (#20036)

See https://bugzil.la/1278000
Refs #19670

[skip sauce]

9 years agoAdd Wall of Browser Bugs entry for #19839 (#20026)
Chris Rebert [Fri, 3 Jun 2016 08:23:19 +0000 (01:23 -0700)] 
Add Wall of Browser Bugs entry for #19839 (#20026)

See https://bugzilla.mozilla.org/show_bug.cgi?id=1277782
Refs #19839

[skip sauce]

9 years agoAdd Wall of Browser Bugs entry for #17695 (#20025)
Chris Rebert [Fri, 3 Jun 2016 07:18:15 +0000 (00:18 -0700)] 
Add Wall of Browser Bugs entry for #17695 (#20025)

See https://webkit.org/b/158342
Refs #17695.

[skip sauce]

9 years agoAdd Wall of Browser Bugs entry for #20012 (#20024)
Chris Rebert [Fri, 3 Jun 2016 05:40:34 +0000 (22:40 -0700)] 
Add Wall of Browser Bugs entry for #20012 (#20024)

Refs https://webkit.org/b/158340
Closes #20012

[skip sauce]

9 years agoMerge branch 'v4-dev' of https://github.com/twbs/bootstrap into v4-dev
Mark Otto [Fri, 3 Jun 2016 04:48:53 +0000 (21:48 -0700)] 
Merge branch 'v4-dev' of https://github.com/twbs/bootstrap into v4-dev

9 years agoAdd Wall of Browser Bugs entry for #19810 (#20021)
Chris Rebert [Thu, 2 Jun 2016 17:14:45 +0000 (10:14 -0700)] 
Add Wall of Browser Bugs entry for #19810 (#20021)

Refs https://crbug.com/597642
Closes #19810

[skip sauce]

9 years agoAdd Wall of Browser Bugs entry for #19927 (#20020)
Chris Rebert [Thu, 2 Jun 2016 17:09:06 +0000 (10:09 -0700)] 
Add Wall of Browser Bugs entry for #19927 (#20020)

Refs https://webkit.org/b/158276
Closes #19927

[skip sauce]

9 years agoTweak Esc key comment in modal.js
Chris Rebert [Tue, 31 May 2016 09:19:56 +0000 (02:19 -0700)] 
Tweak Esc key comment in modal.js

[skip sauce]
[skip validator]

9 years agoUpgrade ESLint to v2.2.0 (#20000)
Chris Rebert [Tue, 31 May 2016 08:27:01 +0000 (01:27 -0700)] 
Upgrade ESLint to v2.2.0 (#20000)

[skip sauce]
[skip validator]

9 years agoMerge pull request #19998 from twbs/eslint-2.0.0
Chris Rebert [Tue, 31 May 2016 08:16:05 +0000 (01:16 -0700)] 
Merge pull request #19998 from twbs/eslint-2.0.0

Upgrade to ESLint v2.0.0

9 years agoUpgrade babel-eslint to ^6.0.4 19998/head
Chris Rebert [Tue, 31 May 2016 08:02:30 +0000 (01:02 -0700)] 
Upgrade babel-eslint to ^6.0.4

[skip sauce]
[skip validator]

9 years agoUpgrade ESLint to v2.0.0
Chris Rebert [Tue, 31 May 2016 07:53:01 +0000 (00:53 -0700)] 
Upgrade ESLint to v2.0.0

[skip sauce]
[skip validator]

9 years agoEnable new ESLint-recommended rules in ESLint config
Chris Rebert [Tue, 31 May 2016 07:49:48 +0000 (00:49 -0700)] 
Enable new ESLint-recommended rules in ESLint config

Refs http://eslint.org/docs/user-guide/migrating-to-2.0.0#new-rules-in-eslintrecommended

9 years agoMigrate parser & env config to ESLint 2.0.0
Chris Rebert [Tue, 31 May 2016 07:46:33 +0000 (00:46 -0700)] 
Migrate parser & env config to ESLint 2.0.0

9 years agoComply with consistent-return ESLint rule
Chris Rebert [Tue, 31 May 2016 07:45:32 +0000 (00:45 -0700)] 
Comply with consistent-return ESLint rule

9 years agoMigrate ESLint rules config to ESLint 2.0.0
Chris Rebert [Tue, 31 May 2016 07:39:36 +0000 (00:39 -0700)] 
Migrate ESLint rules config to ESLint 2.0.0

Refs http://eslint.org/docs/user-guide/migrating-to-2.0.0

9 years agoMerge pull request #19995 from twbs/eslint-1.10.3
Chris Rebert [Tue, 31 May 2016 07:24:13 +0000 (00:24 -0700)] 
Merge pull request #19995 from twbs/eslint-1.10.3

Upgrade ESLint to v1.10.3

9 years agoUpdate npm shrinkwrap 19995/head
Chris Rebert [Tue, 31 May 2016 07:11:37 +0000 (00:11 -0700)] 
Update npm shrinkwrap

[skip sauce]
[skip validator]

9 years agoUpgrade ESLint to v1.10.3
Chris Rebert [Tue, 31 May 2016 07:11:19 +0000 (00:11 -0700)] 
Upgrade ESLint to v1.10.3

Refs #19908

9 years agoMerge pull request #19994 from twbs/eslint-1.9
Chris Rebert [Tue, 31 May 2016 07:08:07 +0000 (00:08 -0700)] 
Merge pull request #19994 from twbs/eslint-1.9

Upgrade ESLint to v1.9.0

9 years agoUpdate npm shrinkwrap 19994/head
Chris Rebert [Tue, 31 May 2016 07:00:10 +0000 (00:00 -0700)] 
Update npm shrinkwrap

[skip sauce]
[skip validator]

9 years agoUpgrade ESLint to v1.9.0
Chris Rebert [Tue, 31 May 2016 06:59:23 +0000 (23:59 -0700)] 
Upgrade ESLint to v1.9.0

Refs #19908

9 years agoMerge pull request #19993 from twbs/eslint-1.7.3
Chris Rebert [Tue, 31 May 2016 06:51:23 +0000 (23:51 -0700)] 
Merge pull request #19993 from twbs/eslint-1.7.3

Upgrade ESlint to v1.7.3

9 years agoUpdate shrinkwrap 19993/head
Chris Rebert [Tue, 31 May 2016 06:43:28 +0000 (23:43 -0700)] 
Update shrinkwrap

9 years agoUpgrade ESlint to v1.7.3
Chris Rebert [Tue, 31 May 2016 06:38:10 +0000 (23:38 -0700)] 
Upgrade ESlint to v1.7.3

Enable new rules:
* no-empty-pattern
* no-magic-numbers (exempting 0 and ±1)

Refs #19908

[skip sauce]
[skip validator]

9 years agoUse named constants for magic numbers (#19992)
Chris Rebert [Tue, 31 May 2016 06:42:00 +0000 (23:42 -0700)] 
Use named constants for magic numbers (#19992)

Mostly KeyboardEvent.which and MouseEvent.which values.

[skip validator]

9 years agoMerge pull request #19990 from twbs/bypass-grunt-eslint
Chris Rebert [Tue, 31 May 2016 05:32:15 +0000 (22:32 -0700)] 
Merge pull request #19990 from twbs/bypass-grunt-eslint

Just use ESLint directly instead of going thru grunt-eslint

[skip sauce]
[skip validator]

9 years agoUpdate npm shrinkwrap 19990/head
Chris Rebert [Tue, 31 May 2016 05:15:37 +0000 (22:15 -0700)] 
Update npm shrinkwrap

9 years agoKilled the grunt-eslint middleman; Long live ESLint.
Chris Rebert [Tue, 31 May 2016 05:14:18 +0000 (22:14 -0700)] 
Killed the grunt-eslint middleman; Long live ESLint.

Refs #19908

[skip sauce]
[skip validator]

9 years agoFix load & scroll event usage in ScrollSpy tests (#19986)
Chris Rebert [Mon, 30 May 2016 16:39:45 +0000 (09:39 -0700)] 
Fix load & scroll event usage in ScrollSpy tests (#19986)

* Use $.one() instead of $.on() since there are no $.off()s in the code.
* Remove unnecessary namespacing of listeners for the `scroll` & `load` events.
    These are vanilla DOM events (not custom jQuery namespaced events)
    and we're not using jQuery namespacing to manage these event listeners either (e.g. `$.off()`).

[skip validator]

9 years agojs/tests/unit/scrollspy.js: Fix "offsed" typos (#19985)
Chris Rebert [Mon, 30 May 2016 01:36:09 +0000 (18:36 -0700)] 
js/tests/unit/scrollspy.js: Fix "offsed" typos (#19985)

[skip sauce]
[skip validator]

9 years agoTravis: Upgrade Node.js from v5 to v6 (#19980)
Chris Rebert [Sat, 28 May 2016 20:39:40 +0000 (13:39 -0700)] 
Travis: Upgrade Node.js from v5 to v6 (#19980)

v6 is the current stable version and will be an LTS version.
v5 is not an LTS version.

Refs https://github.com/nodejs/LTS

9 years agoUpdate _flex.scss 19977/head
Catalin Zalog [Sat, 28 May 2016 00:25:24 +0000 (03:25 +0300)] 
Update _flex.scss

9 years agoMerge pull request #19894 from twbs/v4-dev-jquery223
XhmikosR [Thu, 26 May 2016 12:40:02 +0000 (15:40 +0300)] 
Merge pull request #19894 from twbs/v4-dev-jquery223

Update jQuery to v2.2.4.

9 years agoBump gems.
XhmikosR [Thu, 26 May 2016 12:31:55 +0000 (15:31 +0300)] 
Bump gems.

9 years agoFix error with the new jQuery. 19894/head
XhmikosR [Thu, 26 May 2016 12:30:07 +0000 (15:30 +0300)] 
Fix error with the new jQuery.

9 years agoUpdate jQuery to v2.2.4.
XhmikosR [Thu, 26 May 2016 12:26:12 +0000 (15:26 +0300)] 
Update jQuery to v2.2.4.

9 years agohttps://webkit.org/b/144696 has been fixed (#19958)
Chris Rebert [Thu, 26 May 2016 06:18:46 +0000 (23:18 -0700)] 
https://webkit.org/b/144696 has been fixed (#19958)

Remove its entry from the Wall of Browser Bugs
Refs #16372

[skip sauce]

9 years agohttps://crbug.com/427994 has been fixed (#19948)
Chris Rebert [Thu, 26 May 2016 06:14:41 +0000 (23:14 -0700)] 
https://crbug.com/427994 has been fixed (#19948)

Remove its entry from the Wall of Browser Bugs.

[skip sauce]

9 years agoMerge pull request #19892 from heikojansen/patch-1
Mark Otto [Sun, 22 May 2016 02:39:33 +0000 (19:39 -0700)] 
Merge pull request #19892 from heikojansen/patch-1

Remove reference to "loaded.bs.modal" event

9 years agohttp://bugzil.la/924068 closed as duplicate of http://bugzil.la/545685 (#19947)
Chris Rebert [Fri, 20 May 2016 16:05:24 +0000 (09:05 -0700)] 
http://bugzil.la/924068 closed as duplicate of http://bugzil.la/545685 (#19947)

Update the Wall of Browser Bugs entry accordingly.

[skip sauce]

9 years agoAdd "The Bootstrap Authors" to copyright notices (#19936)
Chris Rebert [Fri, 20 May 2016 16:04:31 +0000 (09:04 -0700)] 
Add "The Bootstrap Authors" to copyright notices (#19936)

❤️❤️❤️ https://github.com/twbs/bootstrap/graphs/contributors