Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Ajax: replace "jqXHR.complete" callback with "always" | Oleg Gaidarenko | 2015-02-15 | 1 | -1/+4 | |
| | | | | | | | | | Since it was deprecated since 1.8. Also add additional comments which explains tricky behaviour of "always" callback Closes gh-2033 | |||||
* | Ajax: make jQuery#load "type" field explicit | Oleg Gaidarenko | 2015-02-15 | 1 | -2/+4 | |
| | | | | | | | | * Move "evalScript.php" file to appropriate place * Make jQuery#load "type" field explicit and add test for it Ref trac-11264 | |||||
* | Ajax: simplify one ajax call and add explanatory comment | Oleg Gaidarenko | 2015-02-15 | 2 | -1/+2 | |
| | | | | | | | * Remove "async = true" from script transport since it was needed for FF < 4 and old Opera which we do not support anymore * Add comment to "evalUrl" method on why "type" field should be explicit | |||||
* | Manipulation: don't auto-insert tbody | Oleg Gaidarenko | 2015-02-11 | 1 | -6/+6 | |
| | | | | | Fixes gh-1835 Closes gh-2021 | |||||
* | Manipulation: simplify html wrappers | Oleg Gaidarenko | 2015-02-10 | 1 | -2/+13 | |
| | | | | | | | | Take advantage of html serialization for html wrappers - saves 26 bytes Plus add additional test for "col" element Closes gh-2031 Fixes gh-2002 | |||||
* | CSS: save 20 bytes in css/support | Michał Gołębiowski | 2015-02-05 | 2 | -21/+20 | |
| | | | | Refs gh-1842 | |||||
* | CSS: Fix the pixelMarginRight support test in Android 2.3 | Michał Gołębiowski | 2015-02-05 | 2 | -7/+8 | |
| | ||||||
* | CSS: Restore the hack to get pixels for .css('width') etc. | Michał Gołębiowski | 2015-02-04 | 2 | -4/+39 | |
| | | | | | | | | | | This hack turns out to be needed by Android 4.0-4.3. Add a support test so that the hack is invoked only where needed. Refs gh-1815 Refs gh-1820 Closes gh-1842 | |||||
* | Event: Add a note about a mouseenter bug in Chrome | Michał Gołębiowski | 2015-01-25 | 1 | -0/+4 | |
| | | | | Refs https://code.google.com/p/chromium/issues/detail?id=333868 | |||||
* | Core: Return empty array instead of null for parseHTML("") | Timo Tijhof | 2015-01-19 | 1 | -2/+2 | |
| | | | | | Fixes gh-1997 Close gh-1998 | |||||
* | Event: HTML5 drop events inherit from MouseEvent | Dave Methvin | 2015-01-14 | 1 | -1/+1 | |
| | | | | | Fixes gh-2009 Ref gh-1925 | |||||
* | Offset: simplify jQuery#offsetParent method | Oleg Gaidarenko | 2015-01-13 | 1 | -3/+12 | |
| | | | | | | | | | | | | * 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 Closes gh-1968 | |||||
* | Manipulation: add support to tag-hyphenated elements | Leonardo Braga | 2015-01-13 | 1 | -2/+2 | |
| | | | | | Fixes #1987 Closes gh-1988 | |||||
* | Core: add support to tag-hyphenated elements | Leonardo Braga | 2015-01-13 | 1 | -1/+1 | |
| | | | | Ref #1987 | |||||
* | Core: Remove deprecated context and selector properties | Dave Methvin | 2015-01-11 | 3 | -18/+3 | |
| | | | | | Fixes gh-1908 Closes gh-2000 | |||||
* | Ajax: $.post and $.get can now take an options object | George Mauer | 2015-01-11 | 1 | -2/+3 | |
| | | | | | Fixes gh-1986 Closes gh-1995 | |||||
* | Core: Standardize indexOf comparisons | Richard Gibson | 2015-01-10 | 8 | -11/+12 | |
| | | | | | | | | not present: `< 0` present: `> -1` at index: `=== N` Closes gh-1984 | |||||
* | Callbacks: Reduce size | Richard Gibson | 2015-01-10 | 1 | -82/+74 | |
| | | | | (cherry picked from commit 18baae2efb36a6c759c0dddac7d25da9c554dff7) | |||||
* | Callbacks: Don't abort execution on .lock() | Richard Gibson | 2015-01-10 | 1 | -1/+1 | |
| | | | | | | | Fixes gh-1990 Closes gh-1991 (cherry picked from commit fc7477f4927100f23f83c22b5142a42d1eac8502) | |||||
* | Callbacks: No object starts out locked | Richard Gibson | 2015-01-10 | 1 | -11/+34 | |
| | | | | | | Fixes gh-1989 (cherry picked from commit f5a8c649b54e8b7fde6253bd56972347f9bbe012) | |||||
* | Event: Normalize mouse event properties in drag events | Aditya Raghavan | 2015-01-05 | 1 | -1/+1 | |
| | | | | | | | DragEvent is a superset of MouseEvent, so we want to fix up mouse properties like pageX and pageY. Fixes gh-1925 | |||||
* | Build: Remove dates from copyright notice | Anne-Gaelle Colom | 2015-01-03 | 1 | -1/+1 | |
| | | | | Closes gh-1983 | |||||
* | Build: Don't assume the browser environment; smoke test on Node w/ jsdom | Michał Gołębiowski | 2014-12-26 | 21 | -38/+70 | |
| | | | | | Fixes gh-1950 Closes gh-1949 | |||||
* | Deferred: Fix $.when with resolved deferred and progress callbacks | Nicolas HENRY | 2014-12-25 | 1 | -2/+2 | |
| | | | | | Fixes gh-1894 Closes gh-1915 | |||||
* | Ajax: simplify jQuery.parseXML method | Shivaji Varma | 2014-12-25 | 1 | -3/+2 | |
| | | | | | | | | | -2 bytes to the gzipped size and code looks a bit nicer This wasn't landed to the compat branch though, since size would increase with this cherry-pick Closes gh-1856 | |||||
* | CSS: simplify "defaultDisplay" module | Oleg Gaidarenko | 2014-12-24 | 1 | -1/+1 | |
| | | | | Closes gh-1962 | |||||
* | Manipulation: make wrapAll funarg execute only once | Oleg Gaidarenko | 2014-12-24 | 1 | -6/+3 | |
| | | | | | Fixes gh-1843 Closes gh-1912 | |||||
* | Data: shave off a couple of bytes | Mike Sidorov | 2014-12-24 | 1 | -4/+3 | |
| | | | | Closes gh-1931 | |||||
* | Data: speed up $.fn.data() for camel-cased key | Victor Homyakov | 2014-12-24 | 1 | -2/+3 | |
| | | | | | Fixes gh-1941 Closes gh-1952 | |||||
* | Event: fix incorrect window bug with scrollTop/Left in iframes | Aditya Raghavan | 2014-12-24 | 1 | -2/+2 | |
| | | | | | Fixes gh-1945 Closes gh-1959 | |||||
* | Ajax: use anchor tag for parsing urls | Ben Toews | 2014-12-11 | 1 | -19/+26 | |
| | | | | | Fixes gh-1875 Closes gh-1880 | |||||
* | Core: re-introduce createHTMLDocument in parseHTML; Safari 8 left out | Timmy Willison | 2014-12-10 | 2 | -3/+23 | |
| | | | | Close gh-1505 | |||||
* | Event: Empty namespaces should be uneventfully ignored | Dave Methvin | 2014-12-09 | 1 | -1/+1 | |
| | | | | | | Thanks @hamishdickson for the report! Closes gh-1769 | |||||
* | Core: revert addition of createHTMLDocument. Thanks, Safari 8. | Timmy Willison | 2014-12-09 | 1 | -3/+1 | |
| | | | | | - Safari 8 has issues when the HTML string contains forms. Closing tags are not respected. | |||||
* | Core: pass empty string to createHTMLDocument to appease IE | Timmy Willison | 2014-12-09 | 1 | -1/+1 | |
| | ||||||
* | Core: remove unnecessary support test for createHTMLDocument | Timmy Willison | 2014-12-09 | 3 | -14/+3 | |
| | ||||||
* | Build: fix tests in AMD mode | Timmy Willison | 2014-12-09 | 5 | -10/+8 | |
| | ||||||
* | Core: use document.implemenation.createHTMLDocument in jQuery.parseHTML | Frederic Hemberger | 2014-12-09 | 3 | -3/+13 | |
| | | | | Close gh-1505 | |||||
* | Core: Simplify and speed up .each | Daniel Husar | 2014-12-09 | 1 | -14/+5 | |
| | | | | Closes gh-1510 | |||||
* | Attributes: Use the option val hook in select val hook and simplify it | Michał Gołębiowski | 2014-12-08 | 1 | -7/+5 | |
| | | | | | | | | | The hook is still defined; not using it could cause issues in IE<11. 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. Fixes gh-1902 Closes gh-1901 | |||||
* | Callbacks: Disabling a callback should prevent firing | Dave Methvin | 2014-12-07 | 1 | -2/+4 | |
| | | | | | | | Thanks to @TheDistantSea for the report! Fixes gh-1790 Closes gh-1643 | |||||
* | Event: Copy detail property to jQuery.Event on native events | Dave Methvin | 2014-12-03 | 1 | -1/+1 | |
| | | | | Fixes gh-1867 | |||||
* | Core: Throw an error on $("#") rather than returning 0-length collection | Dave Methvin | 2014-12-03 | 1 | -1/+2 | |
| | | | | | | Closes gh-1682 Thanks @goob for the issue report! | |||||
* | Manipulation: support data-URI scripts insertion | Bin Xin | 2014-12-03 | 1 | -0/+1 | |
| | | | | | Fixes gh-1887 Closes gh-1888 | |||||
* | CSS: Clean up memory leak in reliableMarginRight | Dave Methvin | 2014-12-02 | 1 | -0/+1 | |
| | | | | | | | Fixes gh-1795 Closes gh-1893 Thanks for the report flexphperia! | |||||
* | Dimensions: allow modification of coordinates argument | Oleg Gaidarenko | 2014-11-16 | 1 | -1/+3 | |
| | | | | | Fixes gh-1848 Closes gh-1853 | |||||
* | Manipulation: Check state lost if the name is set for Android 4.0-4.3 | Michał Gołębiowski | 2014-11-06 | 1 | -0/+3 | |
| | | | | | Refs gh-1820 Closes gh-1841 | |||||
* | Misc: Adjust comments & docs to dropping IE<8 in jQuery Compat | Michał Gołębiowski | 2014-11-04 | 1 | -1/+1 | |
| | ||||||
* | Misc: Drop support for older browsers; update support comments | Michał Gołębiowski | 2014-11-03 | 11 | -64/+28 | |
| | | | | | | | | That includes Opera 12.x, Firefox<29, Safari<6.0 and some hacks for old Blackberry. Closes gh-1820 Refs gh-1815 | |||||
* | Docs: 1.x-master branch -> compat branch; 2.x branch -> master branch | Timmy Willison | 2014-11-03 | 1 | -1/+0 | |
| |