aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Core: Fix trim in Android<4.1Michał Gołębiowski2014-02-131-3/+19
|
* Tests: remove all the empty line whitespaceRick Waldron2014-02-112-28/+28
|
* Support: Document box-sizing was unprefixed in Firefox 29Michał Gołębiowski2014-02-053-4/+4
|
* Docs: Change raises to throws in README test assertionsMichał Gołębiowski2014-02-051-1/+1
|
* Build: Upgrade QUnit to 1.14.0Michał Gołębiowski2014-02-057-637/+706
|
* Selector: update SizzleMichał Gołębiowski2014-02-055-64/+94
|
* 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
* Build: Switch to explicit dependencies versions in bower.jsonMichał Gołębiowski2014-02-023-102/+150
|
* 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-292-4/+39
| | | | | | | | | | | 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
* Build: Specify browserSets for TestSwarm directlyMichał Gołębiowski2014-01-271-1/+1
|
* Support: Add iOS6 support tests resultsMichał Gołębiowski2014-01-271-0/+16
|
* Tests: Blacklist beforeunload test in iOSMichał Gołębiowski2014-01-261-1/+4
| | | | | | | | iOS has the window.onbeforeunload field but doesn't support the beforeunload handler making it impossible to feature-detect the support. Fixes #14717 Closes gh-1496
* Build: Remove obsolete UglifyJS workaroundMichał Gołębiowski2014-01-261-7/+0
|
* Build: Upgrade npm devDependenciesMichał Gołębiowski2014-01-261-8/+8
|
* Updating the master version to 2.1.1pre.Timmy Willison2014-01-232-5/+2
|
* Release: Instantiate a zip archiver, run archivers asyncTimmy Willison2014-01-231-9/+10
|
* Manipulation: Use textarea for missing IE defaultValue checkDave Methvin2014-01-232-9/+6
| | | | | | | | | | 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
* Tests: fix Safari userAgent detectionMichał Gołębiowski2014-01-221-3/+3
|
* Support: Add expected support results for Safari 7 & IE11Michał Gołębiowski2014-01-221-0/+32
|
* Tests: Blacklist one effects test in Chrome 31Michał Gołębiowski2014-01-211-3/+17
| | | | | | Chrome 31 reports incorrect offsetWidth on a table cell with fixed width. This is fixed in Chrome 32 so let’s just skip the failing test in Chrome 31. See https://code.google.com/p/chromium/issues/detail?id=290399
* Traversing: Check all pairwise element combinations for .find( els )Richard Gibson2014-01-172-6/+7
| | | | | Ref b8d0d54a3c4960794a1b492957abeb56eddd1e48 Fixes #14701
* Tests: Fix code style issuesOleg2014-01-161-4/+4
|
* Tests: Add assertion for the jQuery#val methodOleg2014-01-161-2/+7
|
* Attrs: Remove outdated valHook for option elementOleg2014-01-162-8/+9
| | | | | | | 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.
* Tests: Remove one of the checks for memory leakOleg2014-01-141-12/+0
| | | | This check is redundant since jQuery.fragments object does not exist anymore
* Sizzle: update committed dependenciesTimmy Willison2014-01-136-24/+30
|
* Selector: Update SizzleRichard Gibson2014-01-131-1/+1
| | | | Fixes #14657
* Authors: Update AUTHORS.txt and .mailmapDave Methvin2014-01-102-0/+2
|
* Release: Publish to npmJörn Zaefferer2014-01-101-0/+1
| | | | Closes gh-1479
* Tests: Remove html5 shivDave Methvin2014-01-091-7/+0
|
* 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-093-3/+3
|
* Effects: First step() call should match :animated selectorDave Methvin2014-01-072-1/+19
| | | | | Fixes #14623 Closes gh-1473
* Docs: Link to the browser support page in CONTRIBUTING.mdMichał Gołębiowski2014-01-061-7/+3
| | | | | Instead of duplicating the supported browsers matrix, just link to the browser support page on jquery.com.
* README: Add jQuery environment notesTimmy Willison2014-01-061-0/+7
|
* Update grunt-bowercopy to 0.5.0Timmy Willison2013-12-311-1/+1
|
* Doc: Update links and simplify build instructionsOleg2013-12-311-6/+6
|
* traversing: Optimise .add by not using makeArrayTimo Tijhof2013-12-302-33/+116
| | | | Closes gh-1430
* Tests: Avoid use of QUnit.reset() in tests by splitting themcjqed2013-12-238-225/+545
| | | | | Fix #14040 Close gh-1457
* Release script: _tracMilestone -> tracMilestoneTimmy Willison2013-12-211-1/+1
|
* 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.
* Gruntfile: fix watch taskTimmy Willison2013-12-201-1/+1
|
* Release script: minor formatting issue.Timmy Willison2013-12-201-1/+1
|
* Release script: jquery-release integrationTimmy Willison2013-12-202-380/+143
|
* Remove hyphen from pre versionsTimmy Willison2013-12-202-2/+2
| | | | | - It is intentionally invalid semver as pre versions should never be released - UI and Mobile already do this
* Update AUTHORS.txt using git log --format="%aN <%aE>"Timmy Willison2013-12-201-16/+51
|
* Selector: update SizzleRichard Gibson2013-12-205-16/+22
| | | | Fix #14584
* Build: add build option for setting the AMD name.Timmy Willison2013-12-192-5/+28
| | | | Fixes #14016.
* Build: Add the ability to remove global exposure.Timmy Willison2013-12-195-23/+40
| | | | Ref #14016