aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Tests: fix function reference for unbindingTimmy Willison2018-01-081-4/+4
| | | | Ref gh-2958
* Build: Fix UglifyJS output in Android 4.0; update uglifyTimmy Willison2018-01-082-2/+7
| | | | | | | - Thanks to @mgol for first pass Fixes gh-3743 Close gh-3920
* Tests: only run ontimeout test if ontimeout existsTimmy Willison2018-01-081-16/+20
| | | | | Fixes gh-3742 Close gh-3919
* Ajax: add unit test for getScript(Object)Timmy Willison2018-01-081-0/+18
| | | | | Fixes gh-3736 Close gh-3918
* Attributes: allow array param in add/remove/toggleClassTimmy Willison2018-01-082-8/+69
| | | | | | | | | +30 bytes instead of +182 Thanks to @faisaliyk for the first pass on this feature. Fixes gh-3532 Close gh-3917
* Manipulation: use `.children` to select tbody elementsTimmy Willison2018-01-081-1/+1
| | | | | - selectors beginning with a child combinator are not valid natively. This fixes the tests when using selector-native.js
* Core: deprecate jQuery.proxy (not slated for removal)Timmy Willison2018-01-086-87/+91
| | | | | Fixes gh-2958 Close gh-3885
* Core: deprecate jQuery.nowTimmy Willison2018-01-0810-17/+15
| | | | | Fixes gh-2959 Close gh-3884
* Core: adjust data tests to ensure proper camelCasingTimmy Willison2018-01-082-30/+99
| | | | | - Add back camelCase to the public object (deprecate not remove) Ref #3384
* Core: make camelCase function available only for internal usageNilton Cesar2018-01-089-58/+66
| | | | | Close gh-3604 Fixes gh-3384
* Build: Only run browser tests in one Node version on TravisMichał Gołębiowski-Owczarek2018-01-032-2/+13
| | | | Ref gh-3744 Closes gh-3894
* Tests: Add support for running unit tests via grunt with karmaTimo Tijhof2017-12-1860-1859/+2566
| | | | | | | | | | | | | - Update QUnit to 1.23.1 - Remove unused dl#dl from test/index.html - Remove unused map#imgmap from test/index.html - Ensure all urls to data use baseURI - Add the 'grunt karma:main' task - customContextFile & customDebugFile - Add 'npm run jenkins' script Close gh-3744 Fixes gh-1999
* Docs: Create CODE_OF_CONDUCT.mdTimmy Willison2017-12-111-0/+3
| | | | Close gh-3865
* CSS: Correctly set support properties with non-default zoomSaptak Sengupta2017-12-053-3/+42
| | | | Fixes gh-3808 Closes gh-3872
* Manipulation: Reduce size by eliminating single-use variableRichard Gibson2017-11-221-5/+2
| | | Closes gh-3851
* Tests: Add iOS 11 support test resultsMichał Gołębiowski-Owczarek2017-11-201-0/+18
|
* Build: Test on Node.js 9Michał Gołębiowski-Owczarek2017-11-061-0/+1
| | | Closes gh-3840
* Tests: Add Safari 11 support test resultsMichał Gołębiowski-Owczarek2017-10-181-0/+18
|
* Tests: Make Node tests work for paths with spaces in themMichał Gołębiowski-Owczarek2017-10-182-3/+3
| | | | | | Without this patch Jenkins tests fail as jQuery job names there contain spaces, e.g. "jQuery Core". Closes gh-3821
* Build: Remove package-lock.json, add it to .gitignoreMichał Gołębiowski-Owczarek2017-09-252-5624/+1
| | | | | | | | | | | | | | | | | | npm 5, even the version included in the latest Node.js 8.5.0 re-generates `package-lock.json` on each install. And when it does on a system that doesn't support all the optional dependencies that are supported on the OS where the lockfile was generated, it removes those optional deps from the lockfile. The effect is that everyone firing `npm install` on our repo on any OS other than macOS will immediately get a dirty state of the repo as the `fsevents` dependency subtree gets removed from `package-lock.json`. That's a really bad experience. This commit removes package-lock.json from the repository and adds it to .gitignore. We'll start committing the file again once the issue is resolved on npm's part. Fixes gh-3792
* Build: increase timeout in Promises/A+ tests 10 timesMichał Gołębiowski-Owczarek2017-09-251-3/+6
| | | | | | | The promises-aplus-tests sets up a default 200 ms Mocha timeout. This makes our tests randomly fail on Jenkins. 2 seconds will be safer. Closes gh-3791
* Build: Drop cross-spawn, use child_process.spawn shell optionMichał Gołębiowski-Owczarek2017-09-255-58/+11
|
* Build: Update to Babel 7, use for-of plugin instead of preset-es2015Henry Zhu2017-09-254-767/+341
| | | Closes gh-3786
* CSS: Detect more WebKit styles erroneously reported as percentagesRichard Gibson2017-09-186-29/+30
| | | | | Ref 692f9d4db30c9c6c4f6bc76005cf153586202fa6 Fixes gh-3777 Closes gh-3778
* Tests: Update lineHeight adjustments to give Android more slopRichard Gibson2017-09-081-9/+9
|
* CSS: Avoid unit-conversion interference from CSS upper boundsRichard Gibson2017-08-283-18/+37
| | | | Fixes gh-2144 Closes gh-3745
* Tests: Update path calculationJordan Beland2017-08-161-1/+2
| | | | Fixes gh-3756 Closes gh-3757
* Build: Update my name in ATHORS.txtMichał Gołębiowski-Owczarek2017-08-121-1/+1
| | | | I forgot .mailmap isn't everything.
* Build: Update my name in .mailmapMichał Gołębiowski-Owczarek2017-08-121-2/+2
| | | | I got married! 🎉
* Build: Fix comment typoMatan Kotler-Berkowitz2017-08-081-1/+1
| | | Closes gh-3747
* Dimensions: Don't trust non-pixel computed width/heightRichard Gibson2017-08-072-2/+29
| | | | Fixes gh-3611 Closes gh-3741
* Tests: Replace non-ASCII whitespace in source codeRichard Gibson2017-07-311-1/+1
|
* Dimensions: Improve offsetWidth/offsetHeight fallbackRichard Gibson2017-07-312-2/+28
| | | | | Fixes gh-3698 Fixes gh-3602 Closes gh-3738
* Ajax: add an ontimeout handler to all requestsErik Lax2017-07-242-2/+20
| | | | | Fixes gh-3586 Close gh-3590
* Tests: Account for TestSwarm focus issuesRichard Gibson2017-07-201-89/+98
| | | | Closes gh-3732
* Tests: Simulate events when CI hinders use of native onesRichard Gibson2017-07-202-125/+107
| | | | Ref gh-3732
* Tests: Reduce the abort timeout for simple focus testingRichard Gibson2017-07-192-8/+4
| | | | Ref gh-3732
* Tests: Abort focus tests when the environment doesn't cooperateRichard Gibson2017-07-181-1/+10
| | | | Ref gh-3732
* Tests: Try extra hard to control focusRichard Gibson2017-07-181-12/+21
| | | | Ref gh-3732
* Support: Properly check for IE9 absolute scrollbox mishandlingRichard Gibson2017-07-184-67/+91
| | | | | | Ref gh-3589 Fixes gh-3699 Fixes gh-3730 Closes gh-3729
* Dimensions: Detect and account for content-box dimension mishandlingRichard Gibson2017-07-103-16/+44
| | | | Fixes gh-3699 Closes gh-3700
* Offset: fix error from bad merge in #3695Jason Bedard2017-07-101-2/+2
|
* Revert "Offset: Resolve strict mode ClientRect "no setter" exception"Jason Bedard2017-07-101-4/+2
| | | | This reverts commit 3befe5911af0cf516896482bb9ddf197c8cb8a8e.
* Test: ensure position/offset return mutable objectsJason Bedard2017-07-101-5/+31
| | | | | Fixes gh-3612 Closes gh-3695
* Core: Deprecate jQuery.isWindowShashanka Nataraj2017-07-109-40/+45
| | | | | Fixes gh-3629 Close gh-3702
* Event: `stopPropagation()` on native event-handlerPierre Spring2017-07-102-4/+58
| | | | | Fixes gh-3693 Close gh-3694
* Build: fix uglify options for uglify updateTimmy Willison2017-07-103-1293/+1918
| | | | | | | - Uses new typeofs option for compression - See https://github.com/mishoo/UglifyJS2/issues/2198 Close gh-3710
* Build: Update sinon, husky, and qunitjsTimmy Willison2017-07-102-406/+2047
|
* Build: update node dependencies; commit package-lock.jsonCDAGaming2017-06-263-17/+3854
| | | | | - Also ignore yarn.lock Close gh-3669
* Deferred: fix memory leak of promise callbacksJason Bedard2017-06-201-1/+8
| | | | Fixes gh-3606 Closes gh-3657