aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Event: HTML5 drop events inherit from MouseEventDave Methvin2015-01-142-8/+13
| | | | | | | | | Fixes gh-2009 Ref gh-1925 (cherry picked from commit d7e5fcee519e5f3e840beef9e67a536e75133df9) Conflicts: test/unit/event.js
* Manipulation: blacklist IE8 from running tests for tag-hyphenated elemsOleg Gaidarenko2015-01-141-0/+7
| | | | | | | IE8 supports only HTML elements it knows about, but if user uses custom elements a.k.a. tag-hyphenated, we assume it doesn't try to use them with IE8 Ref 5d522f5c740f1f919a630a5f6ec3d40fad840ff7
* Offset: simplify jQuery#offsetParent methodOleg Gaidarenko2015-01-131-3/+13
| | | | | | | | | | | | * It seems, check for html element (and previously for body element) was redundant * Simplify "return" statement * Add comment about potential errors that didn't find themselves in real life app Ref 74ae5444832b2fb966768a97281d2ad8c088bc58
* Manipulation: add support to tag-hyphenated elementsLeonardo Braga2015-01-132-2/+19
| | | | | Ref #1987 Ref 85ffc6d973865a031ded170934e0acfc2e97cb11
* Core: add support to tag-hyphenated elementsLeonardo Braga2015-01-132-1/+14
| | | | | Ref #1987 Ref 534f13025aeb59a7d5893ce62efafa0b066a4934
* Build: Sanctify the component name status of WrapDave Methvin2015-01-111-1/+2
| | | | (cherry picked from commit a4133ffafa6ac43b3aa22bc4edb4444b09f5250c)
* Core: Remove deprecated context and selector propertiesDave Methvin2015-01-115-65/+7
| | | | | | Fixes gh-1908 Closes gh-2000 (cherry picked from commit 0ea8c32863af31fb5cfc184e8d513bbae35583e8)
* Ajax: $.post and $.get can now take an options objectGeorge Mauer2015-01-112-2/+23
| | | | | | Fixes gh-1986 Closes gh-1995 (cherry picked from commit 89ce0af2cf7f001647e74fc1de92ce94a51fd5c2)
* Build: Rearrange grunt/npm tasks into a build/dist/test patternRichard Gibson2015-01-112-6/+10
| | | | | | | | | Ref 76df9e4e389d80bff410a9e5f08b848de1d21a2f Ref bb928bde7e7b85357fef3fedd450b04c03e965d7 Conflicts: Gruntfile.js package.json
* Core: Standardize indexOf comparisonsRichard Gibson2015-01-107-10/+11
| | | | | | | | | | not present: `< 0` present: `> -1` at index: `=== N` (cherry picked from commit 53aa87f3bf4284763405f3eb8affff296e55ba4f) Closes gh-1985
* Callbacks: Reduce sizeRichard Gibson2015-01-101-82/+74
|
* Callbacks: Don't abort execution on .lock()Richard Gibson2015-01-102-5/+13
| | | | | Fixes gh-1990 Closes gh-1991
* Callbacks: No object starts out lockedRichard Gibson2015-01-102-12/+38
| | | | Fixes gh-1989
* Build: Specify valid components for commit messagesRichard Gibson2015-01-101-0/+25
| | | | | | Closes gh-1909 (cherry picked from commit 0c9d018889944da3d60cac135dc38dfcc37ac14a)
* Docs: Clarify custom build instructionsDave Methvin2015-01-061-3/+3
| | | | | Closes gh-1854 (cherry picked from commit a3779bc3254159f5a99e8204e69a0f0b9e191f6f)
* Release: Remove copying of jquery-latest filesDave Methvin2015-01-061-28/+18
| | | | Closes gh-1942
* Ajax: Fix cross-domain detection test for non-default portVictor Homyakov2015-01-061-1/+1
| | | | Closes gh-1954
* Misc: Mac OS is now OS X, thanks @xfqDave Methvin2015-01-061-1/+1
| | | | | Closes gh-1970 (cherry picked from commit d30c482910bf35c5dbaec9c82174d1e6ae8839b5)
* Event: Normalize mouse event properties in drag eventsAditya Raghavan2015-01-052-1/+20
| | | | | | | | DragEvent is a superset of MouseEvent, so we want to fix up mouse properties like pageX and pageY. Fixes gh-1925 (cherry picked from commit 389b2ab3b93bfd68ca6c6153a43e11d93ab9ec71)
* Build: Remove dates from copyright noticeAnne-Gaelle Colom2015-01-033-5/+3
| | | | | | | | Closes gh-1983 (cherry picked from commit 66e1b6b8d49812239b5712d65922ff94c60f7b02) Conflicts: Gruntfile.js
* README: update the Homebrew site addressMichał Gołębiowski2015-01-031-1/+1
| | | | | | | | Thanks @xfq (cherry-picked from b410b15e8da1a8d285f431640ff165e634196115) Closes gh-1971
* Event: Add reference to data moduleNorman Xu2014-12-311-1/+1
| | | | | | | Since we are using _data() quite a lot in event module and drop data/accepts as there is no direct reference Ref gh-1948
* Deferred: Fix $.when with resolved deferred and progress callbacksNicolas HENRY2014-12-252-2/+24
| | | | Ref ab20d9d24f0a95df382c02e9ef3dcc4adb86e4f1
* Offset: fix iframe scrollTop/Left test for IE8 and iPhoneOleg Gaidarenko2014-12-251-8/+22
| | | | | | | | | | | | | | * IE8 need a doctype, otherwise IE will scroll it, but will still show old values. It wasn't noticable before, since IE8 will update values if in the dev tools you swtich to "Quirks mode" and then back again, then this tab will always show the correct values even if you update it * iPhone resize the iframe by its content regardless of the width, height values, meaning it's not possible to scroll the iframe only its parent element Ref ae30fb6c27a2121578d3ce7ca6e2ba1d205545b8
* Offset: fix iframe scrollTop/Left test for IE8Oleg Gaidarenko2014-12-241-0/+1
| | | | Ref ae30fb6c27a2121578d3ce7ca6e2ba1d205545b8
* CSS: simplify hack of css getter for the computed valuesOleg Gaidarenko2014-12-243-10/+18
| | | | Ref gh-1906
* CSS: simplify "defaultDisplay" moduleOleg Gaidarenko2014-12-241-1/+1
| | | | | Ref 90d7cc1d8b2ea7ac75f0eacb42439349c9c73278 Ref gh-1961
* Traversing: simplify jQuery#contents methodOleg Gaidarenko2014-12-241-3/+1
| | | | | Ref 90d7cc1d8b2ea7ac75f0eacb42439349c9c73278 Ref gh-1961
* Manipulation: make wrapAll funarg execute only onceOleg Gaidarenko2014-12-242-9/+69
| | | | Ref 359b03cac74d7336676a6992f14b7ccab9b28659
* CSS: Add unit tests for negative margins and positioningAditya Raghavan2014-12-241-0/+15
| | | | Ref 1b932bb7867924b98529537f8ccd35db979ae22a
* Event: add test for window scrollTop/Left logic in iframesAditya Raghavan2014-12-241-0/+15
| | | | Ref d21edb599d8f5f80a3f3ecba5b62311b9cd1a3e6
* Build: Sizzle version labels must start with a dashTimmy Willison2014-12-171-1/+1
|
* Build: update node dependenciesTimmy Willison2014-12-171-8/+8
|
* Build: account for version labels in Sizzle versionsTimmy Willison2014-12-171-1/+1
| | | | Fixes gh-1939
* Authors: Update AUTHORS.txt and .mailmapDave Methvin2014-12-162-3/+20
|
* Sizzle: update 2.1.1Timmy Willison2014-12-157-49/+113
|
* README: various text fixesOleg Gaidarenko2014-12-152-7/+7
| | | | | | Thank you @essamjoubori, @bcbcb, @namlede Ref 31b63fc23674ede657f019783ad7b942bb83f9c3
* Support: Correct iOS 8 support test results, re-arrange entriesMichał Gołębiowski2014-12-131-5/+36
|
* Ajax: use anchor tag for parsing urlsBen Toews2014-12-112-22/+33
| | | | | | | | | Fixes gh-1875 Closes gh-1880 (cherry picked from commit 5a75278e4c5359e07303fc4d8e78a1cf94f6ad65) Conflicts: src/ajax.js
* Data: use removeAttribute in cleanData to bypass Chrome bugJason Bedard2014-12-106-41/+37
| | | | | | | Related: https://code.google.com/p/chromium/issues/detail?id=378607 Fixes gh-1664
* Build: fix tests in AMD modeTimmy Willison2014-12-107-34/+31
|
* Core: introduce createHTMLDocument in parseHTML; Safari 8/IE8 left outTimmy Willison2014-12-104-4/+83
| | | | Close gh-1506
* Event: Empty namespaces should be uneventfully ignoredDave Methvin2014-12-092-1/+12
| | | | | | | Thanks @hamishdickson for the report! Closes gh-1769 (cherry picked from commit 8653068dd6b8a515f5c1d8a0fda4479e9534103e)
* Css: Remove non-functional unit test for negative marginDave Methvin2014-12-091-4/+1
| | | | | | | | Thanks @MatthewMueller Closes gh-1474 Ref gh-1918 (cherry picked from commit 30b3b33251abc38386b787c64494265177302b86)
* Support: Re-organize browser order, add Safari 8Michał Gołębiowski2014-12-091-67/+9
| | | | | | | | | | Most browsers were put in order newest to oldest, Android was treated differently; this has been fixed. Also, browsers that share test results between different versions were grouped together. (refs 43faf6d1f922ba44a84c93f4ff2461d208b2bf48)
* Core: Simplify and speed up .eachDaniel Husar2014-12-091-14/+5
| | | | | | Closes gh-1510 (cherry picked from commit eeda11cdd6a69ec2ef4e9c1ed12b82a79910fda5)
* Attributes: Simplify the option val hook; backport a test from masterMichał Gołębiowski2014-12-082-6/+8
| | | | | | | | | | | | | The hook is still defined; not using it could cause issues in IE<11. Backport the test from the master branch. Also, IE10 no longer throws when value not set but it still doesn't trim the value. IE11 has all those issues fixed; support comments are updated. (cherry-picked from f6302b0b53d61dfe1adbfaf6612be5cbced5bbc1) Fixes gh-1902 Closes gh-1901
* Misc: Drop support for older browsers; update support commentsMichał Gołębiowski2014-12-0841-1075/+254
| | | | | | | | | | That includes IE<8, Opera 12.x, Firefox<29, Safari<6.0 and some hacks for old Blackberry. Fixes gh-1836 Fixes gh-1701 Refs gh-1815 Refs gh-1820
* Manipulation: improve test for data-URIOleg Gaidarenko2014-12-081-11/+24
| | | | | Some environments do not support data-uri in "src" attribute of script element. Mitigate it with equality assertion
* Event: Fully clean up events in unit testVeaceslav Grimalschi2014-12-071-1/+2
| | | | | Closes gh-1685 (cherry picked from commit 4467ed606ab0a9b28ed495e682576910937fa5e0)