aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fix #12637: restore 1.8.1 ajax crossDomain logic. Close gh-944.Richard Gibson2012-10-031-3/+6
| |
* | Fix #12537, element.css('filter') returns undefined in IE9. Close gh-942.Mike Sherov2012-09-301-1/+3
| |
* | Fix #12357: be more kind to non-browser environments. Close gh-938.Richard Gibson2012-09-301-7/+6
| |
* | Sizzle: removes nth-child cacheTimmy Willison2012-09-201-0/+0
| |
* | Sizzle: account for external document contexts (such as iframes) in ↵Timmy Willison2012-09-201-0/+0
| | | | | | | | combinator checks. Fixes #12572.
* | Update Sizzle: fix a failing test in traversing. Move an attribute selector ↵Timmy Willison2012-09-191-0/+0
| | | | | | | | test to jQuery-only.
* | Sizzle: fixes failing test in cssTimmy Willison2012-09-191-0/+0
| |
* | Update Sizzle: fix position caching with child selectors. Fixes #12337.Timmy Willison2012-09-191-0/+0
| |
* | Fixes failing tests in selector/traversingTimmy Willison2012-09-191-0/+0
| |
* | Update Sizzle: Fixes #12303, #12474, #12523, #12526, #12541.Timmy Willison2012-09-191-0/+0
| |
* | Fix #12229, size/consistency improvements. Close gh-887.Richard Gibson2012-09-185-24/+21
| |
* | Fix #12423. Ensure we can .apply() before we try.Dave Methvin2012-09-181-1/+1
| | | | | | | | I can't think of an uncontrived way to unit test this, it only occurs in IE when a BHO monkeys with the links.
* | Fix #12447: Ensure starting-point calc takes finite time. Close gh-922.Richard Gibson2012-09-151-8/+7
| |
* | Fix #12536. Start at .offset() 0,0 if no getBoundingClientRect.Dave Methvin2012-09-142-9/+14
| | | | | | | | This lets us still add the other offset components to the number so they're less wrong. Affects BlackBerry 5 and iOS 3, everyone else has gBCR.
* | Fix #12534. Don't die on browsers lacking getBoundingClientRect.Dave Methvin2012-09-131-2/+2
| |
* | deferred.promise(obj) should work with non-objects. Fixes #12521. Much ↵jaubourg2012-09-131-1/+1
| | | | | | | | needed unit tests added!
* | Sizzle: fix selector in Chrome 21. Fixes #12492.Timmy Willison2012-09-111-0/+0
| |
* | Sizzle: tagged versions are now in the repo; update selector engine listTimmy Willison2012-09-111-0/+0
| |
* | Fix #12436, make delegated events fast again. Close gh-923.Dave Methvin2012-09-091-1/+4
| | | | | | | | Retains the rooted-at-delegateTarget behavior fixed in #12383 by afd717df9e.
* | Remove useless guard for `a`. Close gh-918.Dave Methvin2012-09-091-1/+1
| | | | | | | | Thanks @staabm!
* | Sizzle: adjustment for speed totals displayTimmy Willison2012-09-081-0/+0
| |
* | Update Sizzle: adds custom performance suite for testing across multiple ↵Timmy Willison2012-09-081-0/+0
| | | | | | | | selector engines and multiple versions of Sizzle
* | Update Sizzle: authors.txt update and fix failing tests caused by QUnit's ↵Timmy Willison2012-09-051-0/+0
| | | | | | | | html addition
* | Fix #12370. Explicitly coerce bool/undef to integer.Dave Methvin2012-08-301-0/+1
| |
* | Sizzle: POS selectors make more extensive use of tokenization. Fixes #12303.Timmy Willison2012-08-291-0/+0
| | | | | | | | http://jqbug.com/12303
* | Fix #12243, $("col").width() should return the column's width. Close gh-916.Mike Sherov2012-08-291-3/+8
| |
* | Sizzle: tweak for root selector shortcut. Fixes #12419.Timmy Willison2012-08-291-0/+0
| |
* | Update Sizzle: minor editsTimmy Willison2012-08-291-0/+0
| |
* | Sizzle: support negative numbers in `:eq`. Fixes #12241.Timmy Willison2012-08-281-0/+0
| |
* | Sizzle: adjust caching to avoid IE errors on xml descendent selectors. Fixes ↵Timmy Willison2012-08-281-0/+0
| | | | | | | | #12369.
* | Sizzle: use tokenization to complex check pseudo arguments. Fixes #12412.Timmy Willison2012-08-281-0/+0
| |
* | Fix #12347 and #12384. Use a fresh div in jQuery.clean each time.Dave Methvin2012-08-281-8/+8
| | | | | | | | Regression was introduced in 22ad8723ce07569a9b039c7901f29e86ad14523c most likely because the clown who fixed http://bugs.jquery.com/ticket/4011 didn't add a unit test.
* | Reverting Sizzle is bad, Dave.Timmy Willison2012-08-281-0/+0
| |
* | Update placeholder references to tickets.Dave Methvin2012-08-281-1/+1
| |
* | Fix #12383. All selectors should be delegateTarget-relativeDave Methvin2012-08-281-7/+2
| |
* | Fix #12313, .height()/.width() just use CSS if no offsetWidth. Close gh-909.Mike Sherov2012-08-281-1/+4
| |
* | Update authors.Dave Methvin2012-08-281-0/+0
| |
* | Update Sizzle: size reduction, -85 bytesTimmy Willison2012-08-271-0/+0
| |
* | Sizzle: provide backwards-compatibility for creating custom pseudos with ↵Timmy Willison2012-08-271-0/+0
| | | | | | | | arguments. Fixes #12409.
* | Sizzle: make html from assertions xhtml compliant. Fixes #12359.Timmy Willison2012-08-271-0/+0
| |
* | Sizzle: fix compilation of the same selector with different contexts. Fixes ↵Timmy Willison2012-08-271-0/+0
| | | | | | | | #12403.
* | Update Sizzle: passing null to $.contains should not throw an error. Fixes ↵Timmy Willison2012-08-241-0/+0
| | | | | | | | #12314
* | Update Sizzle: Use tokenization rather than regex for grouping. Fixes ↵Timmy Willison2012-08-241-0/+0
| | | | | | | | #12237, #12205, #12285.
* | Revert "Fix #11586. Ajax DELETE ain't got no body, so data goes to its URL."Dave Methvin2012-08-241-1/+1
| | | | | | | | | | | | This reverts commit c01e022f33575ed45fb8da65be756fc464d40a24. We actually changed DELETE to accept a body on purpose, see http://bugs.jquery.com/ticket/7285 .
* | Revert "Fix #12120. Always stack .before/.after, and fix disconnected nodes."Dave Methvin2012-08-241-3/+8
| | | | | | | | | | | | This reverts commit e2eac3f4d2e7f47b67635704df8e3b6675a91ed6. There is a 1.7 regression with isDisconnected() that we should fix before tackling this.
* | Fix #12120. Always stack .before/.after, and fix disconnected nodes.Dave Methvin2012-08-231-8/+3
| |
* | Fix #10863. Allow newlines in JSON data- attributes.Dave Methvin2012-08-231-1/+1
| |
* | Fix #11586. Ajax DELETE ain't got no body, so data goes to its URL.Dave Methvin2012-08-231-1/+1
| |
* | Scorch the earth and retreat on readyState interactive! Close gh-907.Mike Sherov2012-08-231-2/+2
| |
* | Fix #12266. IE9/10 says document[0] is document.frames[0]? Close gh-903.Elijah Manor2012-08-221-8/+4
| |