aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* Build: Move all external libraries to external directoryScott González2014-06-243-2048/+0
| | | | Closes gh-1593
* Build: Remove unused Sizzle test filesScott González2014-06-248-11410/+0
|
* Effects: Improve raf logicOleg Gaidarenko2014-06-161-21/+18
| | | | | | | | * Make animation behave as if jQuery.fx.off = true if document is hidden * Use cancelAnimationFrame in jQuery.fx.stop Closes gh-1578
* Effects: Reintroduce use of requestAnimationFrameOleg Gaidarenko2014-06-161-2/+25
| | | | | | | | | | Same as before, just use don't use prefixes, since they pretty match useless now and use page visibility API to determine if animation should start. Also null the requestAnimationFrame attribute in window for tests since sinon does not provide fake method for it. Fixes #15147
* Ajax: Always use script injection in globalEvalOleg Gaidarenko2014-06-161-19/+4
| | | | | Fixes #14757 Closes gh-1449
* CSS: Do not throw on frame elements in FFOleg Gaidarenko2014-06-161-1/+8
| | | | | | | | | | | | | IE9-10 throws on elements created in popups (see #14150), FF meanwhile throws on frame elements through "defaultView.getComputedStyle" (see #15098) Use "defaultView" if in the popup which would fix IE issue, use "window.getComputedStyle" which would fix FF issue. And everybody wins, except performance, but who cares right? Fixes #15098 Closes gh-1583
* Support: clean up comments and Support notationDave Methvin2014-06-1028-170/+161
| | | | Closes gh-1577
* Core: Work around loss of precision from parseFloatRichard Gibson2014-06-071-1/+2
| | | | | Fixes #15100 (cherry picked from commit b6e99eb43c35a3cd048c5c56d31c7e871f299a77)
* Wrap: Declare a dependency on the manipulation moduleTJ VanToll2014-06-021-0/+1
| | | | | Fixes #15121 Closes gh-1589
* Ajax: Support usage without jQuery.eventTJ VanToll2014-06-021-1/+2
| | | | | Fixes #15118 Closes gh-1588
* Ajax: move ajax event aliases to their own fileTimmy Willison2014-06-023-7/+14
| | | | Fixes #15126
* Data: Work around IE11 bug with onpageshow attributeDave Methvin2014-04-301-4/+8
| | | | Fixes #14894
* Effects: Respect display value on inline elementsOleg Gaidarenko2014-04-301-3/+5
| | | | | | | | Take "olddisplay" value into the account Fixes #14824 Closes gh-1566 Ref 73fe17299a840a8a7f3ffffcac15e32a88bd3d66
* Selector: Update Sizzle to 1.10.19Richard Gibson2014-04-183-28/+38
| | | | | Fixes #14901 Fixes #14793
* Dimensions: Reverse a check to avoid potential reflowsChristian Kosmowski2014-04-181-1/+1
| | | | | Fixes #14979 Closes gh-1560
* Selector: Use Element.matches in selector-native if availablePhilip Jägenstedt2014-03-201-1/+2
| | | | | | | | | | | Spec: http://dom.spec.whatwg.org/#dom-element-matches Support in Chromium: https://code.google.com/p/chromium/issues/detail?id=326652 Fixes #14902 Closes gh-1524
* Event: Fix isDefaultPrevented for bubbled events in Android 2.3Michał Gołębiowski2014-03-201-2/+2
| | | | | Fixes #14897 Closes gh-1545
* Effects: Don't overwrite display:none when .hide()ing hidden elementsRichard Gibson2014-03-201-5/+10
| | | | | Fixes #14848 Closes gh-1548
* CSS: jQuery#hide should always save display valueOleg Gaidarenko2014-03-201-6/+3
| | | | | Fixes #14750 Closes gh-1509
* Manipulation: Change support test to be WWA-friendlyJonathan Sampson2014-03-201-2/+9
| | | | | | | | Setting the innerHTML property in an unsafe manner raises issues in Windows Web Applications. Strings being passed into innerHTML cannot include the name attribute. Closes gh-1537
* Attributes: Trim whitespace from option text when returned as a valueJohn Hoven2014-03-201-0/+10
| | | | | | | | | | Fixes #14858 Ref #14686 Closes gh-1531 (cherry picked from commit 9ec429cf6270e455aba4eba85f4db80e633806b6) Conflicts: src/attributes/val.js
* 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
* Event: Treat Pointer events like mouse events, #14741louisremi2014-03-161-2/+4
| | | | | Ref #14741 Ref gh-1503
* CSS: Add flex-grow and flex-shrink to cssNumberRoman Rei_2014-03-131-0/+2
| | | | | Fixes #14888 Closes gh-1536
* AMD: Note on AMD best practicesS. Andrew Sheppard2014-03-121-0/+6
| | | | | Fixes #14687 Closes gh-1478
* Event: Call underlying stopImmediatePropagation when presentDave Methvin2014-03-121-0/+7
| | | | Fixes #13997
* 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. Fixes #14836 Closes gh-1532
* Manipulation: don't use Object.keys for consistencyMichał Gołębiowski2014-03-091-4/+3
| | | | Fixes #14659
* Core: Do not run window.onready when readyDave Methvin2014-03-041-2/+3
| | | | Fixes #14802
* CSS: Return values should be numbersDave Methvin2014-03-041-2/+2
| | | | Fixes #14792
* Event: Allow triggerHandler(beforeunload)Dave Methvin2014-03-041-1/+1
| | | | Fixes #14791
* Ajax: .load() should trim its selectorDave Methvin2014-03-041-1/+1
| | | | Fixes #14773
* Core: Arrays like [42] should fail .isNumeric()Dave Methvin2014-03-041-1/+1
| | | | Fixes #14179
* Core: Remove native String#trim usage to save sizeMichał Gołębiowski2014-03-042-19/+6
| | | | Fixes #14794
* Support: Reduce sizeRichard Gibson2014-02-141-15/+19
| | | | Ref a7ea12a9a7c696a14455bfe4bfebf984dd329832
* Support: Skip style-based tests when element.style is undefinedRichard Gibson2014-02-141-0/+4
| | | | | | Fixes #14785 Ref #13754 Ref badcd1b6f301e6253405f17759c1270549a34e12
* Core: Fix trim in Android<4.1Michał Gołębiowski2014-02-131-3/+19
|
* Support: Document box-sizing was unprefixed in Firefox 29Michał Gołębiowski2014-02-051-2/+2
|
* Selector: update SizzleMichał Gołębiowski2014-02-054-63/+93
|
* Attrs: Simplify an option hookOleg2014-02-051-1/+1
| | | | | | | Since getter was removed in fdd78fad19ea3390cd96971cd29430e36378d137 there is no longer a need to wrap option element in order to get its value Fixes #14756
* Core: Remove special case try/catch in isPlainObjectRick Waldron2014-02-021-10/+2
| | | | Fixes #14746
* Ajax: Protect against exceptions thrown synchronously by xhr.sendjaubourg2014-01-291-4/+9
| | | | | | | | | | | When xhr.send throws an exception synchronously, the onerror handler may have been called already which, unchecked, makes the exception bubble up outside of jQuery.ajax. We now catch the exception pre-emptively and only rethrow if we know it hasn't already been notified through the onerror handler. Fixes #14683
* Manipulation: Use textarea for missing IE defaultValue checkDave Methvin2014-01-231-8/+5
| | | | | | | | | | 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
* Traversing: Check all pairwise element combinations for .find( els )Richard Gibson2014-01-171-4/+3
| | | | | Ref b8d0d54a3c4960794a1b492957abeb56eddd1e48 Fixes #14701
* Attrs: Remove outdated valHook for option elementOleg2014-01-161-8/+0
| | | | | | | This hook was relevant for BlackBerry 4.7 which is no longer supported. But this code path now raises error in IE10-11 (#14686) in 1.x-master branch. So to just to be safe, also add test for IE issue to this branch too.
* Sizzle: update committed dependenciesTimmy Willison2014-01-135-23/+25
|
* Intro: Pass window to intro if available, for browserifyForbes Lindesay2014-01-091-2/+2
| | | | Closes gh-1476
* Build: Happy New Year! Thanks @marlonlandaverdeDave Methvin2014-01-091-1/+1
|
* Effects: First step() call should match :animated selectorDave Methvin2014-01-071-1/+4
| | | | | Fixes #14623 Closes gh-1473