Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Prevent IE from throwing errors when setting RGBA values. Fixes #5509. | Colin Snover | 2010-10-09 | 1 | -1/+11 | |
|/ | ||||||
* | Tweak broken serialize tests from commit ↵ | John Resig | 2010-09-30 | 1 | -3/+3 | |
| | | | | 879799fe955f01b85b59fd8a0096d415fc48df03. Thanks to @jaubourg for the catch. | |||||
* | Make sure setting opacity does not clobber other inline filters. Fixes #7101. | Colin Snover | 2010-09-30 | 1 | -3/+6 | |
| | ||||||
* | Using data() on JavaScript objects sets fields directly on the object. Note ↵ | Dave Reed | 2010-09-29 | 2 | -28/+40 | |
| | | | | that events are now a property of a function (to avoid JSON serialization - and only in the case of JavaScript objects, not DOM nodes). Fixes #6807. | |||||
* | Fix number of expected select tests from commit ↵ | John Resig | 2010-09-29 | 1 | -1/+1 | |
| | | | | 879799fe955f01b85b59fd8a0096d415fc48df03. Thanks to @jitter for the catch. | |||||
* | Handle child selectors in particular - away from the selector engine. Fixes ↵ | John Resig | 2010-09-28 | 1 | -1/+3 | |
| | | | | #7029. | |||||
* | Make sure that the contents of the element is still in place when ↵ | John Resig | 2010-09-28 | 1 | -0/+11 | |
| | | | | html(Function) is called. Fixes #6733. | |||||
* | Make sure that mixed case alpha filters are handled correctly in IE. Fixes ↵ | John Resig | 2010-09-28 | 1 | -1/+1 | |
| | | | | #5632. | |||||
* | Make setting .css(name, undefined) a no-op. Fixes #4388. | John Resig | 2010-09-28 | 1 | -1/+9 | |
| | ||||||
* | Make sure that ambiguous val() selection works correctly. | John Resig | 2010-09-28 | 4 | -10/+23 | |
| | ||||||
* | Make .attr(name, null) equivalent to removeAttr(name). (Was roughly this ↵ | John Resig | 2010-09-28 | 1 | -1/+6 | |
| | | | | before - but is now consistent across platforms). Fixes #6341. | |||||
* | Make sure that .offset() doesn't fail against disconnected DOM nodes. Fixes ↵ | John Resig | 2010-09-28 | 1 | -0/+9 | |
| | | | | #4996. | |||||
* | Removing unique check on closest(Array) (it wasn't appropriate there and ↵ | jeresig | 2010-09-27 | 1 | -1/+2 | |
| | | | | broke functionality elsewhere) - follow-up to commit 8c41325a081f4009aa94748b9b6045e50a78422e. Also added another test for closest(Array) after a discussion with @jitter in 26b0e913dda386b6b2848196689a02a2da6aa40d. | |||||
* | Merge branch 'closestbug-6700' of http://github.com/ajpiano/jquery into ↵ | jeresig | 2010-09-27 | 1 | -1/+5 | |
|\ | | | | | | | ajpiano-closestbug-6700 | |||||
| * | .closest() should return a unique set of elements, not duplicates of the ↵ | adam j. sontag | 2010-06-21 | 1 | -1/+5 | |
| | | | | | | | | same ancestor. Fixes #6700 | |||||
* | | Allow 304/Not Modified tests to complete in Opera. | jeresig | 2010-09-27 | 1 | -1/+16 | |
| | | ||||||
* | | Make sure that opacity is being reset properly on a show animation. ↵ | jeresig | 2010-09-27 | 1 | -9/+5 | |
| | | | | | | | | Additionally expose jQuery.isNaN from the data module. | |||||
* | | Adjust manipulation test to handle whitespace RegExp issue in older WebKits. ↵ | jeresig | 2010-09-27 | 1 | -1/+1 | |
| | | | | | | | | Fixes #7082. | |||||
* | | Removing the old cow image from the effects tests - it's no longer needed. ↵ | John Resig | 2010-09-26 | 2 | -1/+1 | |
| | | | | | | | | Fixes #7086. | |||||
* | | Make .val(undefined) == .val("") and chainable; fixes #4130. | dmethvin | 2010-09-25 | 1 | -1/+7 | |
| | | | | | | | | Ensure .val(null) sets an empty string on IE6/7; fixes #5163. | |||||
* | | Don't have .val() return selected-but-disabled options, or selected options ↵ | Dave Methvin | 2010-09-24 | 5 | -10/+27 | |
| | | | | | | | | inside a disabled optgroup. Doesn't change the .val() returned for a disabled select. Fixes #3240, adapted from Nathan Hammond's patch there. | |||||
* | | Serialize keys with empty arrays/object values in jQuery.param(). Fixes #6481. | temp01 | 2010-09-24 | 1 | -1/+6 | |
| | | ||||||
* | | Make sure that undefined is always returned for missing data properties. ↵ | jeresig | 2010-09-24 | 1 | -1/+4 | |
| | | | | | | | | Follow-up to #6304. | |||||
* | | Allow data to be bound to Flash objects (but still stopping short of ↵ | jeresig | 2010-09-24 | 1 | -0/+18 | |
| | | | | | | | | attaching to applets. Fixes #6121. | |||||
* | | Test jQuery.type also with document. | Robert Katic | 2010-09-23 | 1 | -1/+2 | |
| | | ||||||
* | | Made jQuery.type more consistent with host objects. | Robert Katic | 2010-09-23 | 1 | -1/+5 | |
| | | ||||||
* | | Ensure that selector is not broken. | Robert Katic | 2010-09-23 | 1 | -1/+1 | |
| | | ||||||
* | | Correcting some imperfections in test added in previous commit. | Robert Katic | 2010-09-23 | 1 | -7/+7 | |
| | | ||||||
* | | Added support for map of events in live, die, delegate and undelegate. Fixes ↵ | Robert Katic | 2010-09-23 | 1 | -0/+39 | |
| | | | | | | | | #6282. | |||||
* | | Added some tests for #5991. | Robert Katic | 2010-09-23 | 1 | -1/+5 | |
| | | ||||||
* | | Ensured that arrays are not considered same as plain object on deep ↵ | Robert Katic | 2010-09-23 | 1 | -2/+1 | |
| | | | | | | | | extending. Fixes #5991. | |||||
* | | Discovered that another effects bug was fixed with the recent CSS changes ↵ | jeresig | 2010-09-22 | 1 | -1/+6 | |
| | | | | | | | | (namely that show animations always went to auto, even if they weren't supposed to). Test suite adjusted accordingly. | |||||
* | | e3463946e19f2eb53d909fc2b59cc1c8636d21bd actually fixed a previously ↵ | jeresig | 2010-09-22 | 1 | -1/+1 | |
| | | | | | | | | undicovered but with setting auto, adjust the effects test suite accordingly. Thanks to @bugbegone for the catch. | |||||
* | | Add some tests for jQuery.isWindow and make sure that we're operating ↵ | jeresig | 2010-09-22 | 1 | -0/+19 | |
| | | | | | | | | against an object before testing. | |||||
* | | Make sure that #... are trimmed from Ajax request URLs. Fixes #4987. | John Resig | 2010-09-22 | 1 | -0/+29 | |
| | | ||||||
* | | Fixed the number of expected class tests from a previous commit. Thanks to ↵ | John Resig | 2010-09-22 | 1 | -2/+2 | |
| | | | | | | | | @bugbegone in 1f667aa035b3e4885d6b35fa9aa4990310f131af for the catch. | |||||
* | | Make .data(Object) extend the existing data object. Fixes #6692. | jeresig | 2010-09-22 | 1 | -2/+4 | |
| | | ||||||
* | | Fix bug when accessing .data() on an empty set. Return null rather than ↵ | Jacob Wright | 2010-09-22 | 1 | -13/+16 | |
| | | | | | | | | throwing exception. | |||||
* | | Added full support for easing in all shorthand effects methods (hide, show, ↵ | Karl Swedberg | 2010-09-22 | 2 | -1/+15 | |
| | | | | | | | | toggle, fadeTo, slideUp, etc.). Previously, these methods could only be used with two of the three (speed, easing, callback) arguments, or, in the case of fadeTo, 3 of the 4 (speed, opacity, easing, callback) arguments. Added three more sets of tests to the series of "Chain" tests. Fixes #7014 | |||||
* | | Make sure the data- number has at least one number in it before passing to ↵ | jeresig | 2010-09-22 | 1 | -1/+5 | |
| | | | | | | | | isNaN. Thanks to @cms in 8ebb9b22df32fe5739a48087b6e33abb9f5cda49 for a heads-up. | |||||
* | | Make sure that non-px values aren't manipulated before input to height/width. | John Resig | 2010-09-21 | 1 | -1/+4 | |
| | | ||||||
* | | Use a different workaround for detecting when Opera finds a status 304 page. ↵ | John Resig | 2010-09-21 | 2 | -0/+13 | |
| | | | | | | | | Fixes #6060. | |||||
* | | Handle some additional data- number edge cases. | jeresig | 2010-09-21 | 1 | -11/+13 | |
| | | ||||||
* | | Make sure that the data- import also supports arrays. | jeresig | 2010-09-21 | 1 | -2/+4 | |
| | | ||||||
* | | Added in support for basic JSON object parsing of data- attributes. | John Resig | 2010-09-21 | 1 | -2/+4 | |
| | | ||||||
* | | Tweaked the data number RegExp some to handle some other edge cases. | John Resig | 2010-09-21 | 1 | -1/+5 | |
| | | ||||||
* | | Fixing the problem with data-* based numbers as mention by @jasonwebster in ↵ | jeresig | 2010-09-20 | 1 | -1/+3 | |
| | | | | | | | | 20673d7. | |||||
* | | Pull data-* attributes into .data(). Original code by Andrée Hasson and ↵ | John Resig | 2010-09-20 | 1 | -0/+68 | |
| | | | | | | | | Paul Irish. Fixes #6921. | |||||
* | | jQuery.css() returns a string value - handle this properly in the animation ↵ | John Resig | 2010-09-17 | 1 | -7/+6 | |
| | | | | | | | | code. | |||||
* | | Fixed some sloppy checks in the effects test suite, makes it more apparent ↵ | John Resig | 2010-09-17 | 1 | -5/+8 | |
| | | | | | | | | where issues are happening. |