aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | Save a few bytes, thanks @danheberden!Dave Methvin2011-08-161-2/+2
| | | | |
| * | | | Fixes #10021. Allow negative relative values for `.css()` (e.g., ↵Dave Methvin2011-08-162-10/+15
| | | | | | | | | | | | | | | | | | | | `"+=-20px"`) since `.animate()` already allows it. Useful for when the relative value is a variable.
* | | | | Merge pull request #465 from anton-ryzhov/masterDave Methvin2011-08-252-0/+13
|\ \ \ \ \ | | | | | | | | | | | | Fixes #10076. $.inArray crashes IE6 and Chrome if second argument is `null` or `undefined` (Thanks anton-ryzhov!)
| * | | | | Unit test for this caseAnton Ryzhov2011-08-172-2/+11
| | | | | | | | | | | | | | | | | | | | | | | | Codestyle fixes
| * | | | | $.inArray doesn't crush IE6 and Chrome if second argument is `null` or ↵Anton Ryzhov2011-08-171-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | `undefined`
* | | | | | Merge pull request #468 from rwldrn/10080Dave Methvin2011-08-252-1/+15
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fixes #10080. Test cache for window inference.
| * | | | | | Test for window inference. Fixes #10080rwldrn2011-08-182-2/+15
| | | | | | |
| * | | | | | Ensure cache[id] exists before attempting to delete it. Fixes #10080Rick Waldron2011-08-171-1/+2
| | | | | | |
* | | | | | | Merge pull request #473 from dmethvin/fix-10098-faux-commentDave Methvin2011-08-251-3/+6
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Fixes #10098. Avoid a slashy-starry char sequence to prevent T-Mobile (and other brain-damaged) script compression breaking jQuery.
| * | | | | | | Use jdalton's shorter sequence for the chars.Dave Methvin2011-08-231-1/+1
| | | | | | | |
| * | | | | | | Use a semantic name for the variable.Dave Methvin2011-08-231-3/+3
| | | | | | | |
| * | | | | | | Fixes #10098. Avoid a slashy-starry char sequence in literal strings to ↵Dave Methvin2011-08-221-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | evade faulty script compressors.
* | | | | | | | Merge pull request #474 from dmethvin/fix-9521-xss-hashDave Methvin2011-08-252-2/+20
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | Fixes #9521. Prioritize #id over <tag> to avoid XSS via location.hash.
| * | | | | | | Prioritize #id over <tag> to avoid XSS via location.hash (#9521)Dave Methvin2011-08-232-2/+20
|/ / / / / / /
* | | | | | | Revert "Landing pull request 461. Adds a due diligence check for pre-defined ↵timmywil2011-08-222-17/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | data-* attrs during removal. Fixes #10026." This reverts commit 6805fc2cd20e36af5c1b0c51f6f39f21cea4609a. A more cache-friendly solution is in the works.
* | | | | | | Landing pull request 461. Adds a due diligence check for pre-defined data-* ↵Rick Waldron2011-08-222-1/+17
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | attrs during removal. Fixes #10026. More Details: - https://github.com/jquery/jquery/pull/461 - http://bugs.jquery.com/ticket/10026
* | | | | | Landing pull request 463. Fixes #9572. Don't camelize the `-ms-` prefix ↵dmethvin2011-08-172-5/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | because Microsoft didn't. A Fixes #9572. More Details: - https://github.com/jquery/jquery/pull/463 - http://bugs.jquery.com/ticket/9572
* | | | | | Landing pull request 459. Do not allow assumed cache[id] in jQuery.data. ↵Rick Waldron2011-08-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #8235. More Details: - https://github.com/jquery/jquery/pull/459 - http://bugs.jquery.com/ticket/8235
* | | | | | Landing pull request 467. Adds comments regarding opacity test adjustments.Rick Waldron2011-08-171-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | More Details: - https://github.com/jquery/jquery/pull/467
* | | | | | Update sizzle and QUnittimmywil2011-08-172-0/+0
| | | | | |
* | | | | | Landing pull request 466. Test if opacity is not expected val. Fixes effects ↵rwldrn2011-08-171-7/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | test suite. More Details: - https://github.com/jquery/jquery/pull/466
* | | | | | Set back the offset test name to fix offset tests; iframe retrieval is based ↵timmywil2011-08-171-1/+1
|/ / / / / | | | | | | | | | | | | | | | on test names
* | | | | Remove requestAnimationFrame support. Fixes #9381.timmywil2011-08-161-20/+3
| | | | |
* | | | | Fix effects test suite to account for opacity being removed rather than ↵timmywil2011-08-161-1/+4
|/ / / / | | | | | | | | | | | | explicity set to 1
* | | | Merge pull request #456 from rwldrn/9318Dave Methvin2011-08-052-5/+8
|\ \ \ \ | | | | | | | | | | Improves support for arbitrary numbers in data keys. Fixes #9318
| * | | | Improves support for arbitrary numbers in data keys. Fixes #9318Rick Waldron2011-08-051-2/+2
| | | | |
| * | | | Adds failing testsRick Waldron2011-08-051-2/+5
| | | | |
* | | | | Merge pull request #455 from rwldrn/9413Dave Methvin2011-08-052-2/+42
|\ \ \ \ \ | | | | | | | | | | | | Supports interoperable removal of hyphenated/camelCase properties. Fixes #9413
| * | | | | Supports interoperable removal of hyphenated/camelCase properties. Fixes #9413Rick Waldron2011-08-051-2/+14
| | | | | |
| * | | | | Adds failing tests for #9413Rick Waldron2011-08-051-0/+28
| |/ / / /
* | | | | Merge pull request #454 from rwldrn/test-suite-fixDave Methvin2011-08-053-24/+23
|\ \ \ \ \ | |/ / / / |/| | | | Fixes assertion counts and dom element fixture issue
| * | | | Fixes assertion counts and dom element fixture issueRick Waldron2011-08-053-24/+23
|/ / / /
* | | | Add test page for crashing IE8 when the testElement in support has a ↵timmywil2011-08-042-0/+24
| | | | | | | | | | | | | | | | background (will run from the test suite). Supplements #9823.
* | | | Add back the background: none setting to avoid any possible crashes in IE ↵timmywil2011-08-041-1/+2
| | | | | | | | | | | | | | | | from the support testElement. Fixes #9823.
* | | | Remove unnecessary regextimmywil2011-08-041-1/+0
| | | |
* | | | Now using getAttributeNode in all attribute cases in IE6/7, which normalizes ↵timmywil2011-08-042-46/+40
| | | | | | | | | | | | | | | | attribute behaviors across browsers, is less hacky, and shortens the attribute code. Fixes #9980.
* | | | Make the tabIndex hook first a propHook and add it to attrHooks for ↵timmywil2011-08-042-15/+75
| | | | | | | | | | | | | | | | back-compat reasons. Fixes #9979.
* | | | Merge pull request #367 from gnarf37/index-optimizeDave Methvin2011-08-042-7/+14
|\ \ \ \ | | | | | | | | | | Quick improvement to the performance of .index() with no arguments
| * | | | Quick improvement to the performace of .index() with no arguments - Adding a ↵gnarf2011-06-142-7/+14
| | | | | | | | | | | | | | | | | | | | unit test for .index() of a node without a parent returns -1
* | | | | Merge pull request #416 from gnarf37/ticket_6652Dave Methvin2011-08-044-6/+39
|\ \ \ \ \ | | | | | | | | | | | | CSS: Remove filter from style when setting opacity to 1 - Fixes #6652 - R
| * | | | | Unit test for #6652Corey Frang2011-07-133-0/+22
| | | | | |
| * | | | | Trying .removeAttribute instead of the regexp to remove the filter attributeCorey Frang2011-07-131-2/+2
| | | | | |
| * | | | | CSS: Remove filter from style when setting opacity to 1 - Fixes #6652 - ↵gnarf2011-06-201-6/+17
| | | | | | | | | | | | | | | | | | | | | | | | REMOVE FILTER:ALPHA(OPACITY=100) AFTER ANIMATION
* | | | | | Merge pull request #412 from rwldrn/9587Dave Methvin2011-08-043-2/+18
|\ \ \ \ \ \ | | | | | | | | | | | | | | jQuery.clone() check destination child nodes are not null. Fixes #9587
| * | | | | | jQuery.clone() check that destination child nodes are not null. Fixes #9587rwldrn2011-06-153-2/+18
| | | | | | |
* | | | | | | Merge pull request #432 from rwldrn/9794Dave Methvin2011-08-042-5/+47
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Correct non-null|undefined evaluation of data property values. Fixes #9779
| * | | | | | | Do plain property check first, fallback to camelCase only if nec. Fixes #9794Rick Waldron2011-07-251-5/+5
| | | | | | | |
| * | | | | | | Correct non-null|undefined evaluation of data property values. Fixes #9794Rick Waldron2011-07-102-5/+47
| | | | | | | |
* | | | | | | | Merge pull request #431 from DenisKnauf/masterDave Methvin2011-08-041-1/+1
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | input type=datetime-local (ajax doesn't support it, yet)
| * | | | | | | | input type=datetime-local support for ajax.Denis Knauf2011-07-071-1/+1
| | | | | | | | |