Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Offset: Resolve strict mode ClientRect "no setter" exception | Richard Gibson | 2016-04-23 | 1 | -2/+4 |
| | |||||
* | Deferred: Remove default callback context | Richard Gibson | 2016-04-23 | 2 | -12/+12 |
| | | | | | | | Employs strict mode to simplify Deferred callback context handling. Fixes gh-3060 Closes gh-3061 | ||||
* | CSS: Toggle detached elements as visible unless they have display: none | Richard Gibson | 2016-04-11 | 2 | -10/+20 |
| | | | | | Fixes gh-2863 Closes gh-3037 | ||||
* | Serialize: Reduce size | Richard Gibson | 2016-04-05 | 1 | -7/+8 |
| | | | | Ref 9fdbdd393a0f0ebdcd837cf102878c8b45860c3b | ||||
* | Serialize: Treat literal and function-returned null/undefined the same | Joe Trumbull | 2016-04-05 | 1 | -1/+4 |
| | | | | | | Fixes gh-3005 Closes gh-3007 | ||||
* | Ajax: execute jQuery#load callback with correct context | Oleg Gaidarenko | 2016-04-04 | 1 | -1/+1 |
| | | | | | | | Thanks @blq (Fredrik Blomqvist) Fixes gh-3035 Close gh-3039 | ||||
* | Core: Simplify isPlainObject | Richard Gibson | 2016-04-04 | 4 | -18/+31 |
| | | | | | Fixes gh-2986 Close gh-2998 | ||||
* | Core: set the base href of the context in parseHTML | Timmy Willison | 2016-04-04 | 1 | -8/+22 |
| | | | | | Fixes gh-2965 Close gh-3022 | ||||
* | Core: implement ready without Deferred | Timmy Willison | 2016-04-04 | 2 | -31/+128 |
| | | | | | | | | | - Make jQuery.ready promise-compatible - Gives up sync guarantee for post-ready callbacks Fixes gh-1778 Fixes gh-1823 Close gh-2891 | ||||
* | Docs: Update support comments to follow the new syntax | Michał Gołębiowski | 2016-03-30 | 23 | -47/+46 |
| | | | | | The changes follow the spec proposed in: https://github.com/jquery/contribute.jquery.org/issues/95#issuecomment-69379197 | ||||
* | Docs: Update support comments related to IE | Michał Gołębiowski | 2016-03-30 | 8 | -11/+12 |
| | | | | All support comments were checked for Edge applicability. | ||||
* | Docs:Tests: Remove legacy code & add support comments where needed | Michał Gołębiowski | 2016-03-30 | 1 | -0/+1 |
| | | | | | | | | This commits backports some changes done in the patch to the then-existing compat branch that removed support for old browsers and added some support comments. Refs 90d7cc1d8b2ea7ac75f0eacb42439349c9c73278 | ||||
* | Support: improve support properties computation | Oleg Gaidarenko | 2016-03-28 | 1 | -19/+15 |
| | | | | | | | | | * Remove div from the memory if it is not needed anymore * Make `computeStyleTests` method a singleton Fixes gh-3018 Closes gh-3021 | ||||
* | Attributes: strip/collapse whitespace for set values on selects | Timmy Willison | 2016-03-17 | 1 | -5/+12 |
| | | | | | Fixes gh-2978 Close gh-3002 | ||||
* | Core: Restore 1.x isPlainObject constructor checks | Richard Gibson | 2016-03-14 | 1 | -1/+3 |
| | | | | | | | - Guard isPlainObject against inherited scalar constructors Fixes gh-2982 Close gh-2985 | ||||
* | Build: combine intro and outro | Timmy Willison | 2016-03-09 | 2 | -5/+10 |
| | | | | | Fixes gh-2975 Close gh-2976 | ||||
* | Docs:Tests: Remove obsolete code from tests, update support comments | Michał Gołębiowski | 2016-03-08 | 15 | -25/+26 |
| | | | | | | | | | | Support comments that were lacking the final IE/Edge version that exhibits the bug were checked & updated. Links to the Chromium bug tracker were updated. Code in tests related to unsupported browsers (like Android 2.3 in non-basic tests) has been removed. Fixes gh-2868 Closes gh-2949 | ||||
* | Attributes: remove redundant parent check | Timmy Willison | 2016-03-07 | 1 | -1/+1 |
| | |||||
* | Selector: filters -> pseudos | Timmy Willison | 2016-03-07 | 3 | -4/+6 |
| | | | | | Fixes gh-2073 Close gh-2969 | ||||
* | Core: restore enumeration behavior in isPlainObject | Timmy Willison | 2016-03-07 | 1 | -3/+6 |
| | | | | | Fixes gh-2968 Close gh-2970 | ||||
* | Core: Deprecate jQuery.parseJSON | Michał Gołębiowski | 2016-03-02 | 4 | -12/+4 |
| | | | | | Fixes gh-2800 Closes gh-2948 | ||||
* | Attributes: remove the lower-casing logic for attribute names | Michał Gołębiowski | 2016-02-17 | 1 | -10/+2 |
| | | | | | | | | | | | | | | | jQuery used to lower-case the attribute names passed to the .attr setter to workaround an old IE issue. This is no longer in jQuery 3.0 and removing it may even "accidentally" make this API sort-of work on SVGs (see gh-2910) so why not. Manual lowercasing had to be added to the place where the proper attrHook is retrieved so that it works regardless of the casing of the provided name. A regular `toLowerCase()` is enough there as those few attributes don't contain any non-ASCII characters. Fixes gh-2914 Closes gh-2916 | ||||
* | Build: use hard-coded path to sizzle in selector-sizzle | Timmy Willison | 2016-02-10 | 1 | -1/+1 |
| | | | | Fixes gh-2898 | ||||
* | Revert "Offset: account for scroll when calculating position" | Oleg Gaidarenko | 2016-02-09 | 1 | -5/+2 |
| | | | | | | | | | | | | This reverts commit 2d715940b9b6fdeed005cd006c8bf63951cf7fb2. This commit provoked new issues: gh-2836, gh-2828. At the meeting, we decided to revert offending commit (in all three branches - 2.2-stable, 1.12-stable and master) and tackle this issue in 3.x. Fixes gh-2828 | ||||
* | Attributes: Add a support comment & fix a link @ tabIndex hook | Michał Gołębiowski | 2016-02-03 | 1 | -1/+2 |
| | | | | Ref gh-2664 | ||||
* | Selector: add jQuery.escapeSelector | Timmy Willison | 2016-01-28 | 2 | -3/+28 |
| | | | | | Fixes gh-1761 Close gh-2878 | ||||
* | CSS: Make sure elem.ownerDocument.defaultView is not null | Todor Prikumov | 2016-01-27 | 1 | -1/+1 |
| | | | | | Fixes gh-2866 Close gh-2867 | ||||
* | Docs: use https where possible | Bernhard M. Wiedemann | 2016-01-27 | 2 | -2/+2 |
| | | | | Close gh-2875 | ||||
* | Core: Improve isNumeric logic and test coverage | Steve Mao | 2016-01-24 | 1 | -1/+5 |
| | | | | | | | | | Also add back accidentally deleted comments about the implementation. Fixes gh-2780 Ref gh-2663 Ref gh-2781 Closes gh-2827 | ||||
* | Effects: remove width/height exception for oldIE | Timmy Willison | 2016-01-21 | 1 | -1/+1 |
| | | | | | Fixes gh-2488 Close gh-2849 | ||||
* | CSS: isHidden -> isHiddenWithinTree | Timmy Willison | 2016-01-21 | 4 | -10/+11 |
| | | | | | Fixes gh-2404 Close gh-2855 | ||||
* | Traversing: restore jQuery push behavior in .find | Timmy Willison | 2016-01-20 | 1 | -3/+4 |
| | | | | | Fixes gh-2370 Close gh-2848 | ||||
* | Ajax: add serialize to AMD dependencies | Timmy Willison | 2016-01-19 | 1 | -1/+2 |
| | | | | Fixes gh-2842 | ||||
* | Event: Fix chaining .on() with null handlers | Devin Wilson | 2016-01-19 | 1 | -0/+2 |
| | | | | Fixes gh-2846 | ||||
* | Attributes: fix setting selected on an option in IE<=11 | Timmy Willison | 2016-01-19 | 1 | -0/+16 |
| | | | | | Fixes gh-2732 Close gh-2840 | ||||
* | CSS: Stop Firefox from treating disconnected elements as cascade-hidden | Richard Gibson | 2016-01-14 | 1 | -1/+6 |
| | | | | | | Fixes gh-2833 Ref dba93f79c405373ec3a492fd0a4bf89b3136a6e6 Close gh-2835 | ||||
* | CSS: Restore cascade-override behavior in .show | Richard Gibson | 2016-01-13 | 2 | -9/+48 |
| | | | | | | | Fixes gh-2654 Fixes gh-2308 Close gh-2810 Ref 86419b10bfa5e3b71a7d416288ab806d47a31d1f | ||||
* | Traversing: Never let .closest() match positional selectors | Richard Gibson | 2016-01-13 | 1 | -13/+14 |
| | | | | | Fixes gh-2796 Close gh-2818 | ||||
* | Traversing: .not/.filter consistency with non-elements | Martijn W. van der Lee | 2016-01-13 | 1 | -1/+1 |
| | | | | | Fixes gh-2808 Close gh-2809 | ||||
* | Docs: Updated links to https where they are supported. | Jon Dufresne | 2016-01-13 | 3 | -5/+5 |
| | | | | Close gh-2746 | ||||
* | Docs: Fix various spelling errors | Josh Soref | 2016-01-13 | 1 | -1/+1 |
| | | | | Closes gh-2761 | ||||
* | Deferred: Warn on exceptions that are likely programming errors | Dave Methvin | 2016-01-13 | 3 | -1/+32 |
| | | | | | Fixes gh-2736 Closes gh-2737 | ||||
* | Deferred: Remove undocumented progress notifications in $.when | Dave Methvin | 2016-01-13 | 1 | -21/+18 |
| | | | | | Fixes gh-2710 Closes gh-2816 | ||||
* | Manipulation: Bring tagname regexes up to spec | Leonardo Braga | 2016-01-07 | 3 | -3/+3 |
| | | | | | Fixes gh-2005 Closes gh-2634 | ||||
* | CSS: Add animation-iteration-count to cssNumber, fix tests | Jun Sun | 2016-01-07 | 1 | -0/+1 |
| | | | | | Fixes gh-2792 Closes gh-2793 | ||||
* | Revert "Attributes: Remove undocumented .toggleClass( boolean ) signature" | Timmy Willison | 2016-01-07 | 1 | -17/+52 |
| | | | | | | This reverts commit 53f798cf4d783bb813b4d1ba97411bc752b275f3. - Turns out this is documented, even if not fully. Need to deprecate before removal. | ||||
* | Event: Remove duplicated word text on comment | Jae Sung Park | 2015-12-03 | 1 | -1/+1 |
| | | | | Closes #2751 | ||||
* | Attributes: exclusively lowercase A-Z in attribute names | Timmy Willison | 2015-12-02 | 1 | -2/+9 |
| | | | | | Fixes gh-2730 Close gh-2749 | ||||
* | Core: do not expose second argument of the `jQuery.globalEval` | Oleg Gaidarenko | 2015-12-02 | 3 | -10/+23 |
| | | | | | Closes jquery/api.jquery.com#831 Closes gh-2718 | ||||
* | Ajax: Preserve URL hash on requests | Dave Methvin | 2015-11-30 | 1 | -12/+16 |
| | | | | | Fixes gh-1732 Closes gh-2721 |