aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Effects: Fix inline element animationsRichard Gibson2014-03-241-2/+2
| | | | | Ref 80cf965e02e71dc1b11bf8c1b3d216b9ab4e99ac Ref #14848
* Css: change boxSizingReliable in IE<9.Michał Gołębiowski2014-03-211-4/+3
| | | | | | | | Change boxSizingReliable test value to false in all IE versions. Modify support comments to argument getComputedStyle guards with oldIE support and not node.js which is not supported in 1.x. Closes gh-1498
* Event: Remove redundant fallback to getPreventDefault()Michał Gołębiowski2014-03-201-5/+3
| | | | | | | Android 2.3 is happy with returnValue already used for oldIE; the getPreventDefault() fallback is not needed. Closes gh-1546
* Effects: Don't overwrite display:none when .hide()ing hidden elementsRichard Gibson2014-03-201-5/+10
| | | | | | | | | Fixes #14848 Closes gh-1548 (cherry picked from commit 890d441aa5d319e49951ba6f0ec719cd4cb96759) Conflicts: src/effects.js
* CSS: jQuery#hide should always save display valueOleg Gaidarenko2014-03-201-6/+3
| | | | | | | | | Fixes #14750 Closes gh-1509 (cherry picked from commit 5a8f76933288396b915800a18240aa17d3414201) Conflicts: src/css.js
* Attributes: Trim whitespace from option text when returned as a valueJohn Hoven2014-03-201-1/+3
| | | | | | Fixes #14858 Ref #14686 Closes gh-1531
* CSS: window.getDefaultComputedStyle may return nullRodrigo Rosenfeld Rosas2014-03-201-3/+4
| | | | | | Fixes #14736 Closes gh-1501 (cherry picked from commit 51910ba8a5aff4cd1a811f1fdb76a6c62a09a666)
* Core: Fix comments for .get() methodBenjy Cui2014-03-201-2/+2
| | | | | Closes gh-1547 (cherry picked from commit ca0086b55a158d8a4347f94254878d6dc5dd90ed)
* Event: Treat Pointer events like mouse events, #14741louisremi2014-03-161-2/+4
| | | | | | Ref #14741 Ref gh-1503 (cherry picked from commit e06f428f6ed99e0fafb2e21c456eafc570e3e5ba)
* CSS: Add flex-grow and flex-shrink to cssNumberRoman Rei_2014-03-131-0/+2
| | | | | | Fixes #14888 Closes gh-1536 (cherry picked from commit c29e9c4db18738f7bfeb6b4a8019121a9079beb6)
* AMD: Note on AMD best practicesS. Andrew Sheppard2014-03-121-0/+6
| | | | | | | | | Fixes #14687 Closes gh-1478 (cherry picked from commit 19220c0f29fa60d80a2beb76f048ffc8b972ba35) Conflicts: AUTHORS.txt
* Event: Call underlying stopImmediatePropagation when presentDave Methvin2014-03-121-0/+7
| | | | | Fixes #13997 (cherry picked from commit 6a89db86ed817f6a7498076e2a06b90f9fce0831)
* Support: Simplify the box-sizing testMichał Gołębiowski2014-03-102-16/+8
| | | | Don't require body in the support.boxSizing test.
* Css: Revert 24e587929f62428e1959b10aace6dc4fd65ab397Michał Gołębiowski2014-03-101-3/+0
| | | | | | | | | | | | | | The workaround to be able to change !important styles broke the browser keeping the old CSS value if the new one was rejected. Patching it would involve a significant perf hit (~33%) so the initial patch needs to be reverted instead. Tests by m_gol & gibson042. (cherry-picked from 10e654218a65ec9a0ffc875137cea945389c69f1) Fixes #14836 Closes gh-1532
* Ajax: Use two-arg form of .slice() for old IEDave Methvin2014-03-041-1/+1
| | | | Followup to a4b9bc57, #14773
* Core: Do not run window.onready when readyDave Methvin2014-03-041-2/+3
| | | | | Fixes #14802 (cherry picked from commit 2df1aad6a1c9376c2a477eba26ee992113ed1c23)
* CSS: Return values should be numbersDave Methvin2014-03-041-2/+2
| | | | | Fixes #14792 (cherry picked from commit f4b37d89820535d6c7503925aa8872645681a865)
* Event: Allow triggerHandler(beforeunload)Dave Methvin2014-03-041-2/+3
| | | | | | | | Fixes #14791 (cherry picked from commit 06adf7c95d93507908181995a9ea15fe2729595a) Conflicts: src/event.js
* Ajax: .load() should trim its selectorDave Methvin2014-03-041-1/+1
| | | | | | | | Fixes #14773 (cherry picked from commit 3a68c114e3a30af86dc261c9d62ce2ae4144d420) Conflicts: src/ajax/load.js
* Core: Arrays like [42] should fail .isNumeric()Dave Methvin2014-03-041-1/+1
| | | | | Fixes #14179 (cherry picked from commit 10efa1f5b44046aab6bcc8423322a41923faa290)
* Core: Remove native String#trim usage to save sizeMichał Gołębiowski2014-03-042-19/+6
| | | | | | (cherry-picked from 279913c71b63da721fa2f118cdce150effbf773e) Fixes #14794
* Support: Reduce size via code consolidation and minification awarenessRichard Gibson2014-03-045-196/+116
| | | | | Ref badcd1b6f301e6253405f17759c1270549a34e12 Closes gh-1518
* Support: Skip style-based tests when element.style is undefinedRichard Gibson2014-02-132-8/+16
| | | | | | Fixes #14785 Ref #13754 Ref badcd1b6f301e6253405f17759c1270549a34e12
* Core: Correct support comments for String.prototype.trimMichał Gołębiowski2014-02-131-1/+3
|
* Docs: Add support comments for prefixed box-sizingMichał Gołębiowski2014-02-052-0/+3
|
* Selector: update SizzleMichał Gołębiowski2014-02-054-63/+93
| | | | (cherry-picked from a74ad04bc9c4c7203303b2547e94f1cc53c2a460)
* Css: Document reliableMarginRight is needed for Android 2.3Michał Gołębiowski2014-01-271-0/+1
|
* Css: Fix the reliableMarginRight test in oldIE.Michał Gołębiowski2014-01-261-3/+7
| | | | This fixes an error introduced by the previous commit.
* Css: Don’t cache support.reliableMarginRight; thanks @jdalton, @timmywilMichał Gołębiowski2014-01-261-6/+5
| | | | Fixes #14731
* Manipulation: Use textarea for missing IE defaultValue checkDave Methvin2014-01-231-6/+7
| | | | | | | | | | IE11 fixed the checkbox defaultValue issue but not textarea. Rather than creating a new detect name I'm reusing the old one to protect anyone who is unwisely using this externally. Re-fixing the defaultValue when it doesn't need to be done is not a problem, so leave that code for IE11. Fixes #14716 Closes gh-1495
* Attrs: Restore ability to pass array to jQuery#valOleg2014-01-161-1/+2
| | | | Thanks @gibson042
* Attrs: Force reflow in select value setterOleg2014-01-161-5/+21
| | | | | | | | | When new option element is added to select box we need to force reflow of newly added node in order to workaround delay of initialization props. try...catch statment is required for bug isolation Fixes #2252
* Attrs: Fix valHook for option elementOleg2014-01-161-2/+1
| | | | Fixes #14686
* Sizzle: update committed dependenciesTimmy Willison2014-01-135-23/+25
|
* Ajax: support non-RFC2616 methods for oldIEOleg2014-01-141-2/+13
| | | | | Closes gh-1466 Fixes #13240
* Effects: First step() call should match :animated selectorDave Methvin2014-01-091-1/+4
| | | | | | | (cherry picked from commit 085814474e4a854d533b5ccbaef24c090081e0c4) Fixes #14623 Closes gh-1473
* Intro: Pass window to intro if available, for browserifyForbes Lindesay2014-01-091-2/+2
| | | | | Closes gh-1476 (cherry picked from commit 6de1d973a436282af7dfe3072924016c3cdc1984)
* Build: Happy New Year! Thanks @marlonlandaverdeDave Methvin2014-01-091-1/+1
| | | | | | (cherry picked from commit 3118f58c465286d538404669d09026b882b2149e) Closes gh-1477
* traversing: Optimise .add by not using makeArrayTimo Tijhof2013-12-301-6/+5
| | | | | | (cherry picked from commit b39ee05b69336d5a6230287ab8bd48c48e5b206f) Closes gh-1430
* exports/global: Do not attach global variables for most CommonJS environmentsTimmy Willison2013-12-202-5/+8
| | | | | | | For CommonJS environments where the global already has a document, it is expected that if a global is needed, the user can attach the global. Fixes #14645.
* Selector: update SizzleRichard Gibson2013-12-204-15/+21
| | | | | Fix #14584 (cherry picked from commit 29c8003347e8768e26077c6d040203d662009220)
* Build: Add the ability to remove global exposure.Timmy Willison2013-12-193-23/+32
| | | | | | | | Ref #14016 Conflicts: build/tasks/build.js src/core.js
* Offset: Fix comment typo, thanks @AurelioDeRosaDave Methvin2013-12-181-1/+1
|
* Manage bower dependencies with grunt-bowercopyTimmy Willison2013-12-0611-0/+13410
| | | | | | | | | | | | | | | | Tracked bower dependencies are located at "src/sizzle" and "test/libs". The source-destination mapping is in the Gruntfile. When updating a bower dependency, update the version in bower.json, run `grunt bower`, and then commit the result. When adding a dependency, update the bowercopy task accordingly. Fixes #14615. Closes gh-1452. Conflicts: bower.json test/index.html
* Change window to global in the most outer IIFE parameters. (cherry-picked ↵Michał Gołębiowski2013-11-171-6/+6
| | | | | | | | | from dc649a33e081c7beb083b04956731aa410eb6b3f) In the most outer IIFE it’s not yet known if the global is window or not. Using the window variable to denote the global was misleading in that case, especially that the code didn’t make such assumption, requiring to provide a Web-like window separately. Renaming window to global clears the confusion.
* Fixes #14549. Execute the factory immediately when CommonJS is used in the ↵Timmy Willison2013-11-151-10/+14
| | | | browser.
* Fix #14503: Cast to string before setting XHR header. Close gh-1427.hongymagic2013-11-141-1/+9
|
* Ref #14180, let focusin/out work on non-element targets.Dave Methvin2013-11-141-2/+2
| | | | | | | (cherry picked from commit c2aca17d457d302cb1683f925b9e5ee93f0984ea) Conflicts: src/event.js
* Fix #14475. Use IE11-friendly detect for proper XHR object.Dave Methvin2013-11-141-7/+3
| | | | We don't seem to have test cases for local file access.
* Fix #14036. Remove user/pass from ajaxLocation. Close gh-1340.njhamann2013-11-131-1/+1
| | | | (cherry picked from commit eb1a2afc9fb1d990d10358aab0e17bc0ce1d1db3)