Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Oops, that test file for bug #8316 was needed - was also missing an include ↵ | jeresig | 2011-03-24 | 1 | -0/+30 |
| | | | | and was causing errors. | ||||
* | Offset setter for fixed position elements in Webkit. Fixes #8316. | Michael Murray | 2011-03-24 | 1 | -1/+16 |
| | |||||
* | Merge branch 'bug-3333' of https://github.com/rdworth/jquery into ↵ | jeresig | 2011-03-24 | 1 | -0/+12 |
|\ | | | | | | | rdworth-bug-3333 | ||||
| * | Added css hook to work around bug in WebKit computed margin-right. Fixes ↵ | Richard Worth | 2011-03-24 | 1 | -0/+12 |
| | | | | | | | | #3333 - .css("marginRight") is incorrect in WebKit | ||||
* | | Merge branch 'fix-8456-lost-mouseenter' of ↵ | jeresig | 2011-03-21 | 1 | -0/+14 |
|\ \ | | | | | | | | | | https://github.com/dmethvin/jquery into dmethvin-fix-8456-lost-mouseenter | ||||
| * | | Fixes #8456. Make sure parent is not null before crawling into its lap, so ↵ | Dave Methvin | 2011-03-09 | 1 | -0/+14 |
| | | | | | | | | | | | | mouseenter is triggered on a mouseover event. | ||||
* | | | Merge branch 'fix-7340-focusin-focusout-bubble' of ↵ | jeresig | 2011-03-21 | 1 | -0/+25 |
|\ \ \ | |_|/ |/| | | | | | https://github.com/dmethvin/jquery into dmethvin-fix-7340-focusin-focusout-bubble | ||||
| * | | Fixes #7340. Use a single capturing handler to simulate bubbling ↵ | Dave Methvin | 2011-03-04 | 1 | -0/+25 |
| |/ | | | | | | | focusin/focusout event on non-IE browsers. Allow native DOM methods to fire events other than the currently active one back into jQuery. | ||||
* | | Merge branch 'bug_6158' of https://github.com/jboesch/jquery into ↵ | John Resig | 2011-03-15 | 1 | -2/+5 |
|\ \ | | | | | | | | | | jboesch-bug_6158 | ||||
| * | | bug 6158; fixing replaceWith from throwing errors on non existant elements; ↵ | Jordan Boesch | 2011-03-05 | 1 | -2/+2 |
| | | | | | | | | | | | | fixing semicolon | ||||
| * | | bug 6158; fixing replaceWith from throwing errors on non existant elements | Jordan Boesch | 2011-03-05 | 1 | -2/+5 |
| |/ | |||||
* | | Introduce submodules, closes #8536 | Carl Fürstenberg | 2011-03-15 | 1 | -0/+0 |
| | | | | | | | | | | | | Instead of the manual clone of sizzle and qunit, use git submodules instead. this will ensure that all future releases can be recreated by checking out an tag. | ||||
* | | Fixes #8509. Makes URL regexp less overzealous and ensures it recognizes URL ↵ | jaubourg | 2011-03-15 | 1 | -1/+11 |
|/ | | | | schemes which do not contain a conformant hierarchical structure ( as per section 2.1.2 of http://www.ietf.org/rfc/rfc2718.txt ). Also adds about: and adobe air's app: and app-storage: to the list of local protocols and provides a failover in case document.location is illformed. Unit test added. | ||||
* | Moves Deferred-related code into a separate module. Context handling has ↵ | jaubourg | 2011-03-03 | 14 | -221/+235 |
| | | | | been simplified in _Deferred.resolve and jQuery.when has been refactored for clarity (and minor optimization). | ||||
* | Fix for #8421. Makes sure resolveWith can be called with only one parameter. | jaubourg | 2011-03-03 | 1 | -5/+11 |
| | |||||
* | Grouped up the test | gnarf | 2011-02-24 | 1 | -13/+9 |
| | |||||
* | A quick change to detect AIR urls | gnarf | 2011-02-24 | 1 | -0/+12 |
| | |||||
* | Make a new jQuery.support.noCloneChecked - splitting apart the previous ↵ | jeresig | 2011-02-23 | 1 | -3/+4 |
| | | | | feature detect relating to clone in IE, fixes the last remaining issue with IE 9 RC. Fixes #8365. | ||||
* | Bug #6911 - Prevent action on disabled elements, both triggering and bound ↵ | Dan Heberden | 2011-02-18 | 1 | -61/+94 |
| | | | | via .live() | ||||
* | Revert "Adds an invert method to promises that returns a "inverted" promise ↵ | jaubourg | 2011-02-18 | 1 | -41/+9 |
| | | | | | | that is resolved when the underlying deferred is rejected and rejected when the underlying deferred is resolved." This reverts commit 4e975430510f443ef76a90d077bc8956fb8b8cc0. | ||||
* | Fix a some inaccuracies in the original test case for #7912. | Anton M | 2011-02-17 | 1 | -16/+26 |
| | | | | | | | - Use fresh div instead of one outside the test-fixture - make sure the empty string test tests actually that (not 0% 0%) - actually test for < -10000 (#7193) - fixed some whitespace issues | ||||
* | Fixes #7912. Make sure .cur() only returns 0 as fallback value when it needs ↵ | louisremi | 2011-02-17 | 1 | -15/+38 |
| | | | | | | | | to ("", auto, undefined, null). This change makes .cur() more .cssHooks friendly. .cur() now returns the unmodified value by .css() if it isn't a number, number-alike or a value that needs a fallback to 0. This way fx.start doesn't need to be recalculated for complex values. | ||||
* | Only perpetrate the .toJSON hack on data caches when they are attached to a ↵ | Dave Methvin | 2011-02-17 | 1 | -6/+0 |
| | | | | plain Javascript object. Part of the continuing saga of #8108. | ||||
* | Fixes #8297. Makes sure response headers with empty values are handled ↵ | jaubourg | 2011-02-17 | 2 | -3/+11 |
| | | | | properly and do not prevent proper parsing of the entire response headers string. Unit test amended. | ||||
* | Revert "Merge branch '8099' of https://github.com/rwldrn/jquery into ↵ | Anton M | 2011-02-15 | 2 | -15/+0 |
| | | | | | | | | | | | rwldrn-8099" This reverts commit bb9408516aa0fc8892f4e07a99b1a47bce06081b, reversing changes made to 3ad8dd242acec1066f43a9349f4c1a352680d37b. Conflicts: src/effects.js | ||||
* | Fix some whitespace issues. | Anton M | 2011-02-15 | 1 | -6/+6 |
| | |||||
* | Fixes #7922. Copy the donor event when simulating a bubbling submit in IE so ↵ | Dave Methvin | 2011-02-15 | 1 | -0/+11 |
| | | | | that we don't accidentally stop propagation on it. Remove a bunch of return statements that could also cancel the event. DRY out the liveFired change from #6359 by moving it to the trigger() function. | ||||
* | Fixes #8277. Sets data to undefined rather than null when it is not provided ↵ | jaubourg | 2011-02-15 | 1 | -0/+15 |
| | | | | in ajax helpers so that it won't revent data set in ajaxSettings from being used. Unit test added. | ||||
* | Fix some unscoped tests which failed after recent changes to QUnit. | Anton M | 2011-02-15 | 3 | -9/+9 |
| | |||||
* | Hide metadata when serializing JS objects using JSON.stringify via a toJSON ↵ | Colin Snover | 2011-02-14 | 1 | -3/+29 |
| | | | | hack. Fixes #8108. | ||||
* | Merge branch '8099' of https://github.com/rwldrn/jquery into rwldrn-8099 | jeresig | 2011-02-14 | 2 | -0/+15 |
|\ | |||||
| * | Bug #8099 - Always restore to correct display value based on element's ↵ | rwldrn | 2011-01-31 | 2 | -0/+15 |
| | | | | | | | | expected default display | ||||
* | | Merge branch 'fix8033' of https://github.com/SlexAxton/jquery into ↵ | jeresig | 2011-02-14 | 7 | -13/+13 |
|\ \ | | | | | | | | | | SlexAxton-fix8033 | ||||
| * | | Moved jQuery global leak to end of file so accidental gEBCN overrides in ↵ | Alex Sexton | 2011-01-23 | 7 | -13/+13 |
| | | | | | | | | | | | | prototype don't get caught up in confusion. Fixed tests to reference jQuery variable instead of $ (best practice). Fixes #8033 | ||||
* | | | Fix breaking test in Chrome. | Anton M | 2011-02-14 | 1 | -1/+1 |
| | | | |||||
* | | | Don't add "px" to unit-less properties when animating them. Fixes #4966. | Anton M | 2011-02-13 | 1 | -0/+10 |
| | | | |||||
* | | | Clean up whitespace in test/unit/effects.js | Anton M | 2011-02-13 | 1 | -44/+37 |
| | | | |||||
* | | | Follow up to fbf79c0b495e08d67c3a4767f371ec7bcfc40a17. | Anton M | 2011-02-13 | 1 | -3/+3 |
| | | | | | | | | | | | | Fix stupid error. | ||||
* | | | Remove old cruft from test folder. Change "polluted" test suite loader to ↵ | Anton M | 2011-02-13 | 23 | -13958/+70 |
| | | | | | | | | | | | | use CDN hosted libraries. | ||||
* | | | Add readyWait tests. Fixes #8145. | jrburke | 2011-02-12 | 3 | -0/+111 |
| | | | | | | | | | | | | Adds tests for the fix to #6781. | ||||
* | | | Remove duplicate test. | Anton M | 2011-02-11 | 1 | -3/+1 |
| | | | |||||
* | | | Simplifies status normalization in xhr transport. Local file test modified ↵ | jaubourg | 2011-02-11 | 1 | -15/+29 |
| | | | | | | | | | | | | for clarity. | ||||
* | | | Make sure .val() works after form.reset() in IE. Fixes #2551. | rwldrn | 2011-02-10 | 1 | -0/+19 |
| | | | |||||
* | | | Make sure .clone(true) correctly clones namespaced events. Fixes #4537. | Anton M | 2011-02-10 | 1 | -6/+13 |
| | | | |||||
* | | | Fix some whitespace issues. Improve and correct an events test. | Anton M | 2011-02-10 | 1 | -30/+26 |
| | | | |||||
* | | | No need to duplicate Sizzle tests, just run them directly from Sizzle. | John Resig | 2011-02-10 | 2 | -518/+1 |
| | | | |||||
* | | | Pull over tests from Sizzle. "Remove backslashes from tag name filter. Fixes ↵ | Anton M | 2011-02-10 | 1 | -2/+3 |
| | | | | | | | | | | | | #8220." | ||||
* | | | Fixes #8219. Introduces the mimeType option to override content-type header ↵ | jaubourg | 2011-02-09 | 1 | -0/+28 |
| | | | | | | | | | | | | in conversion (and in native xhr when possible). Adds companion overrideMimeType method on jqXHR object (it simply sets the option). Unit test added. | ||||
* | | | Makes local filesystem test for ajax more insightful. | jaubourg | 2011-02-09 | 1 | -9/+31 |
| | | | |||||
* | | | Revert portions of 7acb141ed7f2dedd950bb65acf878098640d081e that attempt to ↵ | Colin Snover | 2011-02-08 | 1 | -13/+2 |
| | | | | | | | | | | | | use a function to hide jQuery metadata from JSON.stringify since this does not work reliably cross-browser (fails in Fx3.5, O11, Saf4). |