aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Docs:Tests: Remove obsolete code from tests, update support commentsMichał Gołębiowski2016-03-0815-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 checkTimmy Willison2016-03-071-1/+1
|
* Selector: filters -> pseudosTimmy Willison2016-03-073-4/+6
| | | | | Fixes gh-2073 Close gh-2969
* Core: restore enumeration behavior in isPlainObjectTimmy Willison2016-03-071-3/+6
| | | | | Fixes gh-2968 Close gh-2970
* Core: Deprecate jQuery.parseJSONMichał Gołębiowski2016-03-024-12/+4
| | | | | Fixes gh-2800 Closes gh-2948
* Attributes: remove the lower-casing logic for attribute namesMichał Gołębiowski2016-02-171-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-sizzleTimmy Willison2016-02-101-1/+1
| | | | Fixes gh-2898
* Revert "Offset: account for scroll when calculating position"Oleg Gaidarenko2016-02-091-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 hookMichał Gołębiowski2016-02-031-1/+2
| | | | Ref gh-2664
* Selector: add jQuery.escapeSelectorTimmy Willison2016-01-282-3/+28
| | | | | Fixes gh-1761 Close gh-2878
* CSS: Make sure elem.ownerDocument.defaultView is not nullTodor Prikumov2016-01-271-1/+1
| | | | | Fixes gh-2866 Close gh-2867
* Docs: use https where possibleBernhard M. Wiedemann2016-01-272-2/+2
| | | | Close gh-2875
* Core: Improve isNumeric logic and test coverageSteve Mao2016-01-241-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 oldIETimmy Willison2016-01-211-1/+1
| | | | | Fixes gh-2488 Close gh-2849
* CSS: isHidden -> isHiddenWithinTreeTimmy Willison2016-01-214-10/+11
| | | | | Fixes gh-2404 Close gh-2855
* Traversing: restore jQuery push behavior in .findTimmy Willison2016-01-201-3/+4
| | | | | Fixes gh-2370 Close gh-2848
* Ajax: add serialize to AMD dependenciesTimmy Willison2016-01-191-1/+2
| | | | Fixes gh-2842
* Event: Fix chaining .on() with null handlersDevin Wilson2016-01-191-0/+2
| | | | Fixes gh-2846
* Attributes: fix setting selected on an option in IE<=11Timmy Willison2016-01-191-0/+16
| | | | | Fixes gh-2732 Close gh-2840
* CSS: Stop Firefox from treating disconnected elements as cascade-hiddenRichard Gibson2016-01-141-1/+6
| | | | | | Fixes gh-2833 Ref dba93f79c405373ec3a492fd0a4bf89b3136a6e6 Close gh-2835
* CSS: Restore cascade-override behavior in .showRichard Gibson2016-01-132-9/+48
| | | | | | | Fixes gh-2654 Fixes gh-2308 Close gh-2810 Ref 86419b10bfa5e3b71a7d416288ab806d47a31d1f
* Traversing: Never let .closest() match positional selectorsRichard Gibson2016-01-131-13/+14
| | | | | Fixes gh-2796 Close gh-2818
* Traversing: .not/.filter consistency with non-elementsMartijn W. van der Lee2016-01-131-1/+1
| | | | | Fixes gh-2808 Close gh-2809
* Docs: Updated links to https where they are supported.Jon Dufresne2016-01-133-5/+5
| | | | Close gh-2746
* Docs: Fix various spelling errorsJosh Soref2016-01-131-1/+1
| | | | Closes gh-2761
* Deferred: Warn on exceptions that are likely programming errorsDave Methvin2016-01-133-1/+32
| | | | | Fixes gh-2736 Closes gh-2737
* Deferred: Remove undocumented progress notifications in $.whenDave Methvin2016-01-131-21/+18
| | | | | Fixes gh-2710 Closes gh-2816
* Manipulation: Bring tagname regexes up to specLeonardo Braga2016-01-073-3/+3
| | | | | Fixes gh-2005 Closes gh-2634
* CSS: Add animation-iteration-count to cssNumber, fix testsJun Sun2016-01-071-0/+1
| | | | | Fixes gh-2792 Closes gh-2793
* Revert "Attributes: Remove undocumented .toggleClass( boolean ) signature"Timmy Willison2016-01-071-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 commentJae Sung Park2015-12-031-1/+1
| | | | Closes #2751
* Attributes: exclusively lowercase A-Z in attribute namesTimmy Willison2015-12-021-2/+9
| | | | | Fixes gh-2730 Close gh-2749
* Core: do not expose second argument of the `jQuery.globalEval`Oleg Gaidarenko2015-12-023-10/+23
| | | | | Closes jquery/api.jquery.com#831 Closes gh-2718
* Ajax: Preserve URL hash on requestsDave Methvin2015-11-301-12/+16
| | | | | Fixes gh-1732 Closes gh-2721
* Ajax: Golf away 21 bytesRichard Gibson2015-11-191-30/+28
| | | | Close gh-2699
* Deferred: syncronize single and multiple target handling in $.whenTimmy Willison2015-11-131-11/+11
| | | | | | Fixes gh-2546 Fixes gh-2018 Close gh-2707
* Selector: pass jQuery unit tests with selector-nativeTimmy Willison2015-11-111-49/+76
| | | | | | | | | - 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
* Effects: fix loading showHide in AMD modeTimmy Willison2015-11-101-0/+1
|
* Offset: offsetLeft/Top on empty set returns undefinedDave Methvin2015-11-101-1/+1
| | | | | | Fixes gh-2319 Closes gh-2702 Ref gh-2701
* Dimensions: Empty sets should return undefinedDave Methvin2015-11-101-1/+1
| | | | | Ref gh-2319 Closes gh-2701
* Dimensions: properly manipulate non-px valuesTimmy Willison2015-11-091-9/+19
| | | | | Fixes gh-1712 Close gh-2695
* Manipulation: execute scripts from iframe in the iframe's contextTimmy Willison2015-11-092-4/+5
| | | | | Fixes gh-1757 Close gh-2696
* Dimensions: outerWidth/Height include scrollbarDave Methvin2015-11-071-4/+4
| | | | | Fixes gh-1729 Closes gh-2694
* Event: Separate trigger/simulate into its own moduleDave Methvin2015-11-066-226/+259
| | | | | | | | Fixes gh-1864 Closes gh-2692 This also pulls the focusin/out special event into its own module, since that depends on simulate(). NB: The ajax module triggers events pretty heavily.
* Attributes: return empty array for select-multiple with no valuesTimmy Willison2015-11-051-1/+1
| | | | | Fixes gh-2562 Close gh-2689
* Ajax: Don't throw exceptions on binary data responseDave Methvin2015-11-041-6/+7
| | | | | | | | | 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 abortTimmy Willison2015-11-031-8/+41
| | | | | | | - IE9 does not have onabort. Use onreadystatechange instead. Fixes gh-2079 Close gh-2684
* Ajax: Only form-encode requests with a bodyDave Methvin2015-11-022-2/+8
| | | | | Fixes #2658 Closes #2671
* Core: use interactive to evaluate dom ready, barring IE9-10Timmy Willison2015-10-291-4/+4
| | | | Fixes gh-2100
* Attributes: do not set properties to false when removing booleansTimmy Willison2015-10-211-10/+2
| | | | Fixes gh-1759