Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | | | Merge branch 'fix7762' into jquery master. Fixes #7762. | Colin Snover | 2010-12-30 | 1 | -43/+26 | |
|\ \ \ \ \ | ||||||
| * | | | | | Clearing event handlers on unload is no longer necessary in any version of ↵ | Colin Snover | 2010-12-26 | 1 | -17/+0 | |
| | | | | | | | | | | | | | | | | | | | | | | | | IE. This issue causing memory leaks between pages was fixed in MS07-033. | |||||
| * | | | | | Fix whitespace in event.js | Colin Snover | 2010-12-26 | 1 | -26/+26 | |
| | | | | | | ||||||
* | | | | | | Update CommonJS module registration to check to see if define is a function ↵ | Colin Snover | 2010-12-29 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | instead of just not undefined. | |||||
* | | | | | | Fix for #7865. Scripts onload handler passes event as first parameter so ↵ | jaubourg | 2010-12-30 | 1 | -7/+6 | |
| |_|_|_|/ |/| | | | | | | | | | | | | | | statusText is now passed as second argument for aborts. | |||||
* | | | | | Don't cache non-html strings in buildFragment to avoid possible collision ↵ | Dave Methvin | 2010-12-27 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | with the names of Object methods like toString. Also makes the unit tests 0.5% to 8% faster. Fixes #6779. | |||||
* | | | | | When a native browser event is bubbling up the DOM, make sure that the ↵ | Dave Methvin | 2010-12-27 | 1 | -0/+6 | |
| | | | | | | | | | | | | | | | | | | | | correct isDefaultPrevented value is reflected by jQuery's Event object. Fixes #7793. | |||||
* | | | | | Register as a CommonJS async module if in that kind of environment. Fixes #7102. | jrburke | 2010-12-27 | 1 | -0/+5 | |
| | | | | | ||||||
* | | | | | Merge SlexAxton/jquery:master into jquery/jquery:master. | Colin Snover | 2010-12-26 | 1 | -1/+2 | |
|\ \ \ \ \ | ||||||
| * | | | | | Changed the expando string to use a random number instead of the time, so ↵ | Alex Sexton | 2010-12-26 | 1 | -2/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | collisions become less likely. Also added jQuery version to instantly differentiate separate versions of jQuery (a common use case for noConflict, etc, when two jQuery instances are on the page). Fixes #6842. | |||||
* | | | | | | Removed unnecessary upper/lowercase, it's all just lowercase now (since ↵ | Ben Alman | 2010-12-26 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | $.ajax will uppercase as-needed). | |||||
* | | | | | | WETness getting you down? Fear not, the $.get and $.post methods are now ↵ | Ben Alman | 2010-12-26 | 1 | -22/+7 | |
| |/ / / / |/| | | | | | | | | | | | | | | 866% DRYer. This fixes #7847. | |||||
* | | | | | Fix reliableHiddenOffsets test was not working properly when table cells ↵ | Colin Snover | 2010-12-26 | 1 | -1/+1 | |
| |/ / / |/| | | | | | | | | | | | have borders, causing unnecessary slowness in some browsers. Thanks to matjas for his $.support test page. | |||||
* | | | | Fix fix for #6481 introduced at 7862c45ad2f32096383a21b8b301155787724476 ↵ | Colin Snover | 2010-12-22 | 1 | -1/+3 | |
| | | | | | | | | | | | | | | | | which did not like it when Array.prototype was modified on empty arrays. | |||||
* | | | | Don't use for-in loops on Arrays. Fixes #7817. Thanks to dmethvin. | Colin Snover | 2010-12-22 | 2 | -3/+3 | |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | Conflicts: src/manipulation.js | |||||
| * | | | | Use for loop instead of for/in loop to protect sanctity of Array.prototype. ↵ | Dave Methvin | 2010-12-21 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | Fixes #7817. Test case for this commit is shared with the fix for #6355, https://github.com/jquery/jquery/pull/140 . | |||||
| * | | | | Use a for loop rather than for/in loop when copying events, so that code ↵ | Dave Methvin | 2010-12-20 | 1 | -5/+5 | |
| | |_|/ | |/| | | | | | | | | | | will work with an augmented Array.prototype. Fixes 7809. | |||||
* | | | | Code style fix | Colin Snover | 2010-12-22 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | More unit tests and a $.hasData that works for JS objects too. | Colin Snover | 2010-12-22 | 1 | -1/+5 | |
| | | | | ||||||
* | | | | Update jQuery.hasData to always return a boolean, with unit tests. | Colin Snover | 2010-12-22 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Remove code for ticket #7717 which has been marked WONTFIX to match existing ↵ | Colin Snover | 2010-12-22 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | $.data functionality and to prevent infinite loops caused by circular references. | |||||
* | | | | Fix a potential error in the previous commit caused by the use of a separate ↵ | Colin Snover | 2010-12-22 | 1 | -5/+9 | |
| | | | | | | | | | | | | | | | | index variable. Thanks to dmethvin for the review. | |||||
* | | | | Fix #7717 and #7165. Thanks to dmethvin and iliakan for their help fixing ↵ | Colin Snover | 2010-12-19 | 2 | -4/+8 | |
|/ / / | | | | | | | | | | these issues. | |||||
* | | | Address some code style issues in the clone fix. | Colin Snover | 2010-12-16 | 1 | -4/+2 | |
| | | | ||||||
* | | | Merge branch 'bug_7397' of https://github.com/rwldrn/jquery into rwldrn-bug_7397 | Colin Snover | 2010-12-14 | 1 | -2/+2 | |
|\ \ \ | ||||||
| * | | | Whitespace correction | rwldrn | 2010-12-09 | 1 | -1/+1 | |
| | | | | ||||||
| * | | | Whitespace correction | rwldrn | 2010-12-09 | 1 | -3/+3 | |
| | | | | ||||||
| * | | | Whitespace correction | rwldrn | 2010-12-09 | 1 | -3/+3 | |
| | | | | ||||||
| * | | | Reorders condition at L65 for efficiency | rwldrn | 2010-12-09 | 1 | -2/+2 | |
| | | | | ||||||
| * | | | Clean #7397; Removed unnec. var declaration | rwldrn | 2010-11-09 | 1 | -3/+2 | |
| | | | | ||||||
| * | | | Fixes #7397; 4 supporting unit tests | rwldrn | 2010-11-09 | 1 | -5/+6 | |
| | | | | ||||||
* | | | | More specific version numbers. | Colin Snover | 2010-12-12 | 1 | -2/+2 | |
| | | | | ||||||
* | | | | Speed up & compatibility improvements for new clone mechanism in IE. | Colin Snover | 2010-12-12 | 1 | -20/+52 | |
| | | | | ||||||
* | | | | Merge branch 'bug5566' into csnover-bug5566. Fixes #4386, #5566, #6997. | Colin Snover | 2010-12-12 | 1 | -43/+46 | |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/manipulation.js test/unit/manipulation.js | |||||
| * | | | | Fix the clone method to be a little less insane in IE, which fixes the new ↵ | Colin Snover | 2010-12-12 | 1 | -25/+31 | |
| | | | | | | | | | | | | | | | | | | | | event-cloning clone() as well as probably a bunch of IE-related clone bugs. | |||||
* | | | | | Removed bind/unbind from xhr emulation: success/error/complete are deferred ↵ | jaubourg | 2010-12-11 | 1 | -17/+0 | |
| | | | | | | | | | | | | | | | | | | | | not events so these methods didn't really make sense in the first place. | |||||
* | | | | | More variable renaming to avoid conflicts when module closures are removed. | jaubourg | 2010-12-11 | 2 | -5/+5 | |
| | | | | | ||||||
* | | | | | Renamed variables to avoid conflicts when Makefile removes internal closures. | jaubourg | 2010-12-10 | 2 | -9/+7 | |
| | | | | | ||||||
* | | | | | Fix the closure in ajax.js too. | jaubourg | 2010-12-10 | 1 | -1/+1 | |
| | | | | | ||||||
* | | | | | Fixed function closures so that Makefile can do its magic. | jaubourg | 2010-12-10 | 4 | -6/+8 | |
| | | | | | ||||||
* | | | | | Removed non-standard (and not that useful) xhr emulation methods & reworked ↵ | jaubourg | 2010-12-10 | 1 | -17/+2 | |
| | | | | | | | | | | | | | | | | | | | | the headers test as a consequence. | |||||
* | | | | | Rewrite of the Ajax module by Julian Aubourg. Some (dated) details can be ↵ | jaubourg | 2010-12-09 | 5 | -448/+1427 | |
| | | | | | | | | | | | | | | | | | | | | found here: http://oksoclap.com/6Y26bm1ZsB more details are forthcoming. Fixes #7195. | |||||
* | | | | | Backing out cec68e2b00d86357c18b576cbaed52cc1ea42a74, was causing serialize ↵ | jeresig | 2010-12-09 | 1 | -16/+16 | |
| | | | | | | | | | | | | | | | | | | | | tests to fail. Un-fixes #5566. | |||||
* | | | | | Backing out fb6c038bf00296480234c971a1664ac01ca1479e, was causing ↵ | jeresig | 2010-12-09 | 1 | -6/+0 | |
| | | | | | | | | | | | | | | | | | | | | jQuery.param tests to fail - unfixes #7413. | |||||
* | | | | | Merge branch 'explain-map-concat' of https://github.com/ajpiano/jquery into ↵ | jeresig | 2010-12-09 | 1 | -0/+1 | |
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | ajpiano-explain-map-concat | |||||
| * | | | | | Add a comment explaining that jQuery.map flattens arrays | adam j. sontag | 2010-11-27 | 1 | -0/+1 | |
| | | | | | | ||||||
* | | | | | | Merge branch 'bug5566' of https://github.com/csnover/jquery into csnover-bug5566 | jeresig | 2010-12-09 | 1 | -16/+16 | |
|\ \ \ \ \ \ | | |/ / / / | |/| | | | | ||||||
| * | | | | | Clone fragments in domManip using jQuery.clone instead of ↵ | Colin Snover | 2010-12-06 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | DocumentFragment.cloneNode in order to carry over event data. Fixes #5566, #6997. | |||||
| * | | | | | Clean up empty lines with whitespace in manipulation.js | Colin Snover | 2010-12-06 | 1 | -15/+15 | |
| | |_|_|/ | |/| | | | ||||||
* | | | | | Merge branch 'attrFollowupFix' of https://github.com/jitter/jquery into ↵ | jeresig | 2010-12-09 | 1 | -2/+2 | |
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | jitter-attrFollowupFix |