Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Attributes: fix setting selected on an option in IE<=11 | Timmy Willison | 2016-01-19 | 1 | -0/+31 |
| | | | | | Fixes gh-2732 Close gh-2840 | ||||
* | Docs: remove compat references | Timmy Willison | 2016-01-14 | 1 | -1/+1 |
| | |||||
* | CSS: Restore cascade-override behavior in .show | Richard Gibson | 2016-01-13 | 3 | -107/+343 |
| | | | | | | | Fixes gh-2654 Fixes gh-2308 Close gh-2810 Ref 86419b10bfa5e3b71a7d416288ab806d47a31d1f | ||||
* | Traversing: Never let .closest() match positional selectors | Richard Gibson | 2016-01-13 | 1 | -4/+17 |
| | | | | | Fixes gh-2796 Close gh-2818 | ||||
* | Traversing: .not/.filter consistency with non-elements | Martijn W. van der Lee | 2016-01-13 | 1 | -0/+11 |
| | | | | | Fixes gh-2808 Close gh-2809 | ||||
* | Docs: Updated links to https where they are supported. | Jon Dufresne | 2016-01-13 | 3 | -4/+4 |
| | | | | Close gh-2746 | ||||
* | Tests: fixed grammar in comment | Henry Wong | 2016-01-13 | 1 | -1/+1 |
| | | | | Close gh-2757 | ||||
* | Docs: Fix various spelling errors | Josh Soref | 2016-01-13 | 4 | -6/+6 |
| | | | | Closes gh-2761 | ||||
* | Deferred: Warn on exceptions that are likely programming errors | Dave Methvin | 2016-01-13 | 1 | -0/+59 |
| | | | | | Fixes gh-2736 Closes gh-2737 | ||||
* | Deferred: Remove undocumented progress notifications in $.when | Dave Methvin | 2016-01-13 | 1 | -20/+4 |
| | | | | | Fixes gh-2710 Closes gh-2816 | ||||
* | Manipulation: Bring tagname regexes up to spec | Leonardo Braga | 2016-01-07 | 1 | -0/+67 |
| | | | | | Fixes gh-2005 Closes gh-2634 | ||||
* | CSS: Add animation-iteration-count to cssNumber, fix tests | Jun Sun | 2016-01-07 | 1 | -4/+13 |
| | | | | | Fixes gh-2792 Closes gh-2793 | ||||
* | Revert "Attributes: Remove undocumented .toggleClass( boolean ) signature" | Timmy Willison | 2016-01-07 | 1 | -1/+24 |
| | | | | | | This reverts commit 53f798cf4d783bb813b4d1ba97411bc752b275f3. - Turns out this is documented, even if not fully. Need to deprecate before removal. | ||||
* | Attributes: exclusively lowercase A-Z in attribute names | Timmy Willison | 2015-12-02 | 1 | -1/+12 |
| | | | | | Fixes gh-2730 Close gh-2749 | ||||
* | Ajax: Preserve URL hash on requests | Dave Methvin | 2015-11-30 | 1 | -4/+18 |
| | | | | | Fixes gh-1732 Closes gh-2721 | ||||
* | Effects: add tests for using jQuery.speed directly | Timmy Willison | 2015-11-17 | 1 | -0/+85 |
| | | | | | Fixes gh-2716 Close gh-2724 | ||||
* | Deferred: syncronize single and multiple target handling in $.when | Timmy Willison | 2015-11-13 | 1 | -7/+35 |
| | | | | | | Fixes gh-2546 Fixes gh-2018 Close gh-2707 | ||||
* | Selector: pass jQuery unit tests with selector-native | Timmy Willison | 2015-11-11 | 8 | -167/+233 |
| | | | | | | | | | - Ignore certain tests that obviously are not supported - Beefed up the sortOrder, uniqueSort, isXMLDoc, and attr functions Fixes gh-1742 Fixes gh-2048 Close gh-2703 | ||||
* | Offset: offsetLeft/Top on empty set returns undefined | Dave Methvin | 2015-11-10 | 1 | -2/+2 |
| | | | | | | Fixes gh-2319 Closes gh-2702 Ref gh-2701 | ||||
* | Dimensions: Empty sets should return undefined | Dave Methvin | 2015-11-10 | 1 | -25/+13 |
| | | | | | Ref gh-2319 Closes gh-2701 | ||||
* | Dimensions: properly manipulate non-px values | Timmy Willison | 2015-11-09 | 1 | -30/+35 |
| | | | | | Fixes gh-1712 Close gh-2695 | ||||
* | Manipulation: execute scripts from iframe in the iframe's context | Timmy Willison | 2015-11-09 | 2 | -0/+29 |
| | | | | | Fixes gh-1757 Close gh-2696 | ||||
* | Event: Move VML test out of event alias test | Dave Methvin | 2015-11-07 | 1 | -5/+15 |
| | | | | Ref gh-2693 | ||||
* | Dimensions: outerWidth/Height include scrollbar | Dave Methvin | 2015-11-07 | 1 | -40/+43 |
| | | | | | Fixes gh-1729 Closes gh-2694 | ||||
* | Event: Make event aliases optional in unit tests | Dave Methvin | 2015-11-06 | 2 | -45/+42 |
| | |||||
* | Attributes: return empty array for select-multiple with no values | Timmy Willison | 2015-11-05 | 1 | -2/+2 |
| | | | | | Fixes gh-2562 Close gh-2689 | ||||
* | Event: Add basic unit tests for event aliases | Dave Methvin | 2015-11-05 | 1 | -0/+18 |
| | | | | | | | | Fixes gh-2302 Closes gh-2687 At the moment it's not possible to run the full event unit tests without aliases so this was just tested with a custom build by running this one test. | ||||
* | Event: Ensure delegation doesn't error on comment nodes | Timmy Willison | 2015-11-04 | 1 | -0/+27 |
| | | | | | Fixes gh-2055 Close gh-2659 | ||||
* | Ajax: Don't throw exceptions on binary data response | Dave Methvin | 2015-11-04 | 1 | -0/+24 |
| | | | | | | | | | Fixes gh-2498 Closes gh-2682 The added unit test shows how this could be used to support an ArrayBuffer return, but $.ajax does not support it natively. The goal with this change was to avoid the exception. | ||||
* | Ajax: trigger error callback on native abort | Timmy Willison | 2015-11-03 | 1 | -1/+20 |
| | | | | | | | - IE9 does not have onabort. Use onreadystatechange instead. Fixes gh-2079 Close gh-2684 | ||||
* | Ajax: Only form-encode requests with a body | Dave Methvin | 2015-11-02 | 2 | -15/+57 |
| | | | | | Fixes #2658 Closes #2671 | ||||
* | Tests: Make regexes for iOS devices more rigid | Michał Gołębiowski | 2015-10-30 | 1 | -3/+3 |
| | |||||
* | Tests: Remove Safari 7.0 & iOS 6 support tests results | Michał Gołębiowski | 2015-10-30 | 1 | -18/+1 |
| | |||||
* | Tests: Add iOS 9 support tests results | Michał Gołębiowski | 2015-10-30 | 1 | -0/+17 |
| | |||||
* | Core: use interactive to evaluate dom ready, barring IE9-10 | Timmy Willison | 2015-10-29 | 2 | -0/+35 |
| | | | | Fixes gh-2100 | ||||
* | Attributes: remove flakey test for selected attribute | Timmy Willison | 2015-10-26 | 1 | -3/+1 |
| | | | | | - The change is already covered by the "checked" test. Since this test is redundant, just drop it. | ||||
* | Tests: Post-Summit cleanup | Richard Gibson | 2015-10-25 | 2 | -9/+1 |
| | | | | | Ref 67d7a2eefee768b59eb3d51cb1fb2c671873e58a Ref c752a5030bc00eb5b45dea9c28963f824a5c4f44 | ||||
* | Tests: Use standard external domain name | Richard Gibson | 2015-10-23 | 1 | -1/+1 |
| | | | | | | Ref 01c360f96390ff16edfe65ef3b34e167087ef645 (cherry picked from commit 36806891657b0a3b7c4a12d9698f2ebf552fd712) | ||||
* | Attributes: do not set properties to false when removing booleans | Timmy Willison | 2015-10-21 | 1 | -2/+4 |
| | | | | Fixes gh-1759 | ||||
* | Core: make isNumeric limited to strings and numbers | Timmy Willison | 2015-10-21 | 1 | -1/+1 |
| | | | | Fixes gh-2662 | ||||
* | Tests: Add Safari 9 support tests results | Michał Gołębiowski | 2015-10-18 | 1 | -0/+17 |
| | |||||
* | CSS: Correct misrepresentation of "auto" horizontal margins as 0 | Richard Gibson | 2015-10-18 | 4 | -39/+67 |
| | | | | | | | | | | | | Fixes gh-2237 Closes gh-2276 (cherry picked from commit 214e1634ab9b1d13d53647dd5de3bdf7a091d49c) Conflicts: src/css.js src/css/support.js test/unit/support.js | ||||
* | Attributes: fix tabIndex on <img> in IE11 | Joelle Fleurantin | 2015-10-18 | 1 | -0/+7 |
| | | | | | Fixes gh-2647 Closes gh-2664 | ||||
* | Core: add unit test for isPlainObject(Symbol) | Liza Ramo | 2015-10-18 | 1 | -0/+9 |
| | | | | | Fixes #2645 Closes #2661 | ||||
* | Offset: allow small differences in offset.top | Joelle Fleurantin | 2015-10-18 | 1 | -1/+3 |
| | | | | Fixes gh-2590 | ||||
* | Tests: Change quotes according to style guidelines | Julian Alexander Murillo | 2015-10-18 | 9 | -18/+18 |
| | | | | Close gh-2339 | ||||
* | Event: Fix delegated radio events when arrow keys are used | Dave Methvin | 2015-10-18 | 1 | -0/+33 |
| | | | | | Fixes gh-2343, gh-2410 Close gh-2617 | ||||
* | Attributes: Use simpler boolean check vs a function call | Dave Methvin | 2015-10-18 | 1 | -1/+5 |
| | | | | Ref gh-2491 | ||||
* | Attributes: Remove undocumented .toggleClass( boolean ) signature | Dave Methvin | 2015-10-18 | 1 | -24/+1 |
| | | | | | Fixes gh-2491 Close gh-2618 | ||||
* | CSS: Make show/hide/toggle methods a module | Dave Methvin | 2015-10-18 | 4 | -33/+53 |
| | | | | | | | | Unit test changes some uses of .show() and .hide() to .css( "display", ... ), there was already an implicit assumption in several of the existing tests. Fixes gh-2193 Close gh-2648 |