aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Data: avoid non-alphanumeric chars in expando propertiesJason Bedard2014-09-261-1/+1
| | | | | | Ref chromium issue 378607 Ref #14839 Closes gh-1662
* Event: Restore the `constructor` property on jQuery.Event prototypeDaniel Herman2014-09-042-1/+4
| | | | | | | | | The original definition of the jQuery.Event prototype was paving over the `constructor` property which was causing jQuery.isPlainObject to improperly report that an instance of jQuery.Event was a plain object. Fixes #15090 Closes gh-1580
* Manipulation: Tolerate XMLNode host object input to getAllRichard Gibson2014-09-041-2/+6
| | | | | | Fixes #15151 Ref 25712d77c3bc0221b5b2b9b9492c20a9cfbe1b17 Closes gh-1602
* CONTRIBUTING: Close parenthesisAmit Merchant2014-09-031-1/+1
| | | | Closes gh-1648
* CSS: Correct typo in the commentOleg Gaidarenko2014-09-031-3/+2
|
* CSS: Use pre-defined displays for html and bodyOleg Gaidarenko2014-09-031-1/+7
| | | | | Ref 60f546acb1c7136092b4fd01cccff052e468cc72 Ref 274feb53cc9a99633dfac785d8b3b837d192c43c
* CSS: Remove use of getDefaultComputedStyleNazar Mokrynskyi2014-09-021-12/+2
| | | | | | | Remove optimization to make jQuery compatible with Google's Polymer project Closes gh-1647 Fixes #15227
* Attr: Use typeof check for getAttribute methodOleg Gaidarenko2014-09-021-1/+1
| | | | Ref 29838b6cab6f2e508f3e9692f32918c72b1a504b
* Build: Moved JSHint directives to .jshintrc fileChris Antaki2014-09-022-4/+2
| | | | Closes gh-1595
* Offset: Simplified a conditionalChris Antaki2014-09-021-1/+1
|
* Core: Drop strundefined variableChris Antaki2014-09-027-20/+15
|
* CSS: Removed redundant "to the number" in commentAurelio De Rosa2014-09-021-1/+1
| | | | Closes gh-1594
* Css: Fix the "sanity check" testMichał Gołębiowski2014-07-281-1/+1
| | | | | The #dl element has 0 height so it's now considered hidden regardless of its width.
* CSS: elements are hidden when either offsetWidth or offsetHeight is zeroTimmy Willison2014-07-172-11/+15
| | | | | | | - Note: this is a breaking change that has been delayed for several versions. Fixes #10406 Fixes #13132
* Build: update source map options for the new grunt jshintTimmy Willison2014-07-172-3/+3
|
* Build: update grunt-jscs-checker and pass with the new rulesTimmy Willison2014-07-1739-187/+352
|
* Build: update node dependencies barring jscsTimmy Willison2014-07-171-5/+5
|
* Build: update front-end dependenciesTimmy Willison2014-07-173-47/+79
|
* Build: drop bower; use npm for front-end depsTimmy Willison2014-07-176-23/+26
| | | | | Fixes #15186 Closes gh-1620
* Ajax: Remove workaround for IE6/7Chris Antaki2014-07-131-19/+6
| | | | | Closes gh-1597 Ref #8138
* Readme: Fix punctuation in tileupisfree2014-07-121-1/+1
| | | | Closes gh-1607
* Core: Consistently use local reference to access()Timo Tijhof2014-07-121-1/+1
| | | | | Ref 3b53b75160606610cc8f87404f89fc9e10441c4b Closes gh-1605
* Build: update Sizzle to 2.0.0Timmy Willison2014-07-014-6/+6
|
* Selector: Remove "#" exception for identifier tokensMichał Gołębiowski2014-06-301-2/+2
| | | | | Port Sizzle test change from: https://github.com/jquery/sizzle/commit/f204a6112216f31685717d9fc1bf6cabf42b2ef1
* Build: Update licenseScott González2014-06-272-3/+19
| | | | Closes gh-1587
* Build: update grunt-bowercopyTimmy Willison2014-06-251-1/+1
|
* Build: update Sizzle to 1.11.1 and include licenseTimmy Willison2014-06-256-35/+45
|
* Build: ignore test dependencies for npm installTimmy Willison2014-06-241-0/+4
|
* Build: Move all external libraries to external directoryScott González2014-06-2416-23/+70
| | | | Closes gh-1593
* Build: Remove unused Sizzle test filesScott González2014-06-249-11415/+1
|
* Build: Upgrade to grunt-bowercopy 1.0.0Scott González2014-06-241-1/+1
|
* Build: Update commitplease dev dependencyOleg Gaidarenko2014-06-161-1/+1
|
* Build: Move test to appropriate moduleOleg Gaidarenko2014-06-162-6/+4
|
* Effects: Improve raf logicOleg Gaidarenko2014-06-162-21/+46
| | | | | | | | * 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-162-2/+29
| | | | | | | | | | 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-166-47/+41
| | | | | Fixes #14757 Closes gh-1449
* CSS: Do not throw on frame elements in FFOleg Gaidarenko2014-06-162-1/+31
| | | | | | | | | | | | | 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
* Tests: Clean up isNumeric testsRichard Gibson2014-06-071-47/+42
| | | | (cherry picked from commit d05f4bda1cc0b1ef76dce41a53c17f75c105a377)
* Core: Work around loss of precision from parseFloatRichard Gibson2014-06-072-2/+4
| | | | | 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-022-1/+18
| | | | | Fixes #15118 Closes gh-1588
* Ajax: move ajax event aliases to their own fileTimmy Willison2014-06-024-8/+15
| | | | Fixes #15126
* Selector: Use jQuery reference not SizzleOleg Gaidarenko2014-05-291-2/+6
|
* Selector: Fix test iframe submission for firefoxOleg Gaidarenko2014-05-291-9/+5
| | | | Ref jquery/sizzle@20fbadb0870bd30e0e66c68891f121c0450374c4
* Release: ensure Sizzle is the latest tagTimmy Willison2014-05-233-0/+49
| | | | Fixes #14915
* Build: run jshint and jscs on release scriptsTimmy Willison2014-05-232-4/+3
|
* Build: update AUTHORS.txtTimmy Willison2014-05-231-1/+2
|
* Effects: Remove needless operations in testsOleg Gaidarenko2014-05-091-3/+0
|
* Ajax, Manipulation: don't test cross-document manip in Android 2.3Michał Gołębiowski2014-05-052-2/+23
|