Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Detect JSON Ajax requests by the response content-type (like is done with ↵ | Rick Waldron | 2010-01-05 | 1 | -0/+19 | |
| | | | | XML). Fixes #5709. | |||||
* | Merging in jQuery.proxy() branch. | jeresig | 2010-01-05 | 2 | -5/+24 | |
|\ | ||||||
| * | Added in jQuery.proxy(obj, name), like the method described in Secrets of ↵ | jeresig | 2009-12-31 | 1 | -0/+19 | |
| | | | | | | | | the JavaScript Ninja and in Dojo's Hitch, and added in some unit tests. | |||||
| * | Remove the .bind(name, fn, thisObject) and promote jQuery.event.proxy() to ↵ | jeresig | 2009-12-31 | 1 | -5/+5 | |
| | | | | | | | | jQuery.proxy() as alternative to handling scoping on callbacks. Fixes #5736. | |||||
* | | Rewrite of jQuery.browser to become engine-centric, rather than ↵ | jeresig | 2010-01-05 | 1 | -33/+19 | |
|/ | | | | browser-centric. Also attempt to determine the engine version in a smarter fashion, less prone to error. Finally, enhanced the test suite with 255 useragent strings from http://user-agent-string.info/download for testing. jQuery.browser.safari is now deprecated, use jQuery.browser.webkit instead. | |||||
* | Make sure that selected works in Safari on options in optgroups. Fixes #5701. | jeresig | 2009-12-22 | 1 | -1/+7 | |
| | ||||||
* | Moved jQuery.param "traditional" flag into jQuery.ajaxSettings, can now be ↵ | Ben Alman | 2009-12-23 | 1 | -3/+10 | |
| | | | | overridden via 2nd argument to jQuery.param | |||||
* | Add some extra tests to make sure we can get the value of hyphenated CSS ↵ | jeresig | 2009-12-22 | 1 | -1/+3 | |
| | | | | properties, for #3732. | |||||
* | Make sure that the correct value is being pulled from checkboxes in Webkit. ↵ | jeresig | 2009-12-22 | 1 | -2/+8 | |
| | | | | Fixes #5699. | |||||
* | Made sure that the .val() logic for setting radios and checkboxes was ↵ | jeresig | 2009-12-22 | 1 | -1/+17 | |
| | | | | correct. Fixes #5698. | |||||
* | Fixed the issue where getting an empty value was impossible. Fixes #5697. | jeresig | 2009-12-22 | 1 | -1/+6 | |
| | ||||||
* | Used the patch from Alexander as the basis for a rewrite of the IE change ↵ | Alexander Farkas | 2009-12-21 | 1 | -27/+9 | |
| | | | | event logic. Now has full parity with the regular change event in other browsers: Works with regular bind, works better with multiple selects, works as a regular change event (note test suite changes), works with readonly/disabled inputs, and much more. The original patch had a number of problems, including firing the change event too many times, not bubblinb properly, and not handling clicks on multi-selects properly - that should all be fixed now. Thanks Alexander for the patch pushing in the right direction. | |||||
* | Moved logic for handling .animate({}), doesn't queue anymore. Fixes #5459. | jeresig | 2009-12-21 | 1 | -1/+11 | |
| | ||||||
* | Bringing Sizzle test suite changes back in. | John Resig | 2009-12-19 | 1 | -11/+22 | |
| | ||||||
* | Temporarily disabling test for bug #4299. | jeresig | 2009-12-18 | 1 | -2/+3 | |
| | ||||||
* | Fixed the spacing from the last commit. | jeresig | 2009-12-18 | 1 | -11/+11 | |
| | ||||||
* | Disabled the passthrough .attr(method_name) functionality. You can now use ↵ | jeresig | 2009-12-18 | 2 | -7/+23 | |
| | | | | it if you do: .attr({method_name: value}, true) OR as an easy initialization method: jQuery('<div/>', {html: '...', id: 'test'}). | |||||
* | Made isPlainObject() supporting null, undefined, and window values on IE ↵ | Robert Katic | 2009-12-19 | 1 | -1/+14 | |
| | | | | too. Also added some related tests. Fixes #5669. | |||||
* | Renamed the 'fx' module to 'effects'. Should've been done a long time ago. | jeresig | 2009-12-18 | 1 | -2/+2 | |
| | ||||||
* | Add new html5 input types to list of serializable types. Older browers ↵ | Dave Methvin | 2009-12-18 | 1 | -4/+11 | |
| | | | | handle these as type="text" so they should be consistently serialized on both old and new browsers. Fixes #5667. | |||||
* | Further modified jQuery 1.4 .param() method to serialize arrays containing ↵ | Ben Alman | 2009-12-18 | 1 | -2/+8 | |
| | | | | non-scalar values. PHP and jQuery BBQ can both deserialize these structures, while rack (as of 1.0.0) cannot. | |||||
* | added a couple missing semicolons and fixed a typo in the comments | Karl Swedberg | 2009-12-18 | 1 | -3/+3 | |
| | ||||||
* | Follow-up to 100ed686426b8b404b094b8c8086aefce715f91a, forgot to remove one ↵ | jeresig | 2009-12-17 | 1 | -4/+1 | |
| | | | | of the tests. | |||||
* | Reworked some more of the selector tests as well to clean up after themselves. | jeresig | 2009-12-17 | 1 | -1/+3 | |
| | ||||||
* | Added some more tests around the name tests to catch possible regressions. | jeresig | 2009-12-17 | 1 | -2/+6 | |
| | ||||||
* | Make sure that some height/width is set for the nothiddendiv before checking. | jeresig | 2009-12-16 | 1 | -0/+2 | |
| | ||||||
* | Enforce that hasClass and removeClass work even with tabs and endlines in ↵ | Batiste Bieler | 2009-12-14 | 1 | -7/+21 | |
| | | | | class attributes. Fixes #5505. | |||||
* | Make sure that dynamically-created elements don't have a parent. Fixes #5638. | John Resig | 2009-12-10 | 1 | -1/+4 | |
| | ||||||
* | Removed .attr(removeClass) and .attr(each) tests as they don't really make ↵ | John Resig | 2009-12-10 | 1 | -10/+1 | |
| | | | | sense. | |||||
* | Moved some methods around inbetween core.js and traversing.js. Core methods ↵ | John Resig | 2009-12-10 | 2 | -116/+116 | |
| | | | | shouldn't rely upon other modules (e.g. the selector engine) wherever possible. | |||||
* | Make sure that the correct args are passed in to the filter callback (and by ↵ | John Resig | 2009-12-09 | 1 | -1/+3 | |
| | | | | extension, the not callback). Fixes #5594. | |||||
* | Make sure that calling .width(num) or .height(num) on an empty set returns ↵ | John Resig | 2009-12-09 | 1 | -3/+9 | |
| | | | | the empty set. Fixes #5600. | |||||
* | Rewrote .merge() (faster and less obtuse now). Fixed #5610. | John Resig | 2009-12-09 | 1 | -1/+5 | |
| | ||||||
* | Fix up whitespace and a couple of glitches. | Yehuda Katz | 2009-12-09 | 2 | -16/+16 | |
| | ||||||
* | Add function values to addClass, removeClass, toggleClass, text, and removeAttr | Yehuda Katz | 2009-12-09 | 2 | -22/+58 | |
| | ||||||
* | Made sure that css('width') and height returned string values, not numerical ↵ | John Resig | 2009-12-09 | 1 | -1/+3 | |
| | | | | values. Fixes #5627. | |||||
* | Switched jQuery() to represent jQuery([]) instead of jQuery(document). | John Resig | 2009-12-09 | 1 | -1/+1 | |
| | ||||||
* | Fixed problems with removing live events. Fixes #4894. | John Resig | 2009-12-09 | 1 | -1/+38 | |
| | ||||||
* | Made .clone(true) also copy over element data. Fixes #4191. | John Resig | 2009-12-09 | 1 | -1/+6 | |
| | ||||||
* | Added support for .data(Object), overwriting the existing data object. Fixes ↵ | John Resig | 2009-12-09 | 1 | -1/+15 | |
| | | | | #4284. | |||||
* | Landing in jQuery.contains, jQuery.fn.contains, and jQuery.fn.has support. ↵ | Yehuda Katz | 2009-12-09 | 1 | -1/+37 | |
| | | | | Fixes #4101. | |||||
* | Handle changing form attributes correctly when there is a child element with ↵ | David Petersen | 2009-12-09 | 1 | -1/+2 | |
| | | | | the same name. Fixes #4299 | |||||
* | Make sure that events are cloned for wrap, fixes #2977. | John Resig | 2009-12-08 | 1 | -1/+15 | |
| | ||||||
* | Check Sizzle or jQuery. | John Resig | 2009-12-07 | 1 | -1/+1 | |
| | ||||||
* | Only run the visibility selectors if the filter exists. | John Resig | 2009-12-07 | 1 | -0/+2 | |
| | ||||||
* | Added support for per-property easing | James Padolsey | 2009-12-07 | 1 | -0/+34 | |
| | ||||||
* | Added in support for injecting area elements into map elements. Fixes #4484. | John Resig | 2009-12-06 | 1 | -1/+5 | |
| | ||||||
* | Added in support for $.ajax jsonpCallback (allowing you to specify the name ↵ | John Resig | 2009-12-06 | 1 | -2/+32 | |
| | | | | of the callback method - and allowing you to avoid skipping the cache). Fixes #4206. | |||||
* | Merge branch 'master' of git@github.com:jquery/jquery | John Resig | 2009-12-06 | 1 | -1/+3 | |
|\ | ||||||
| * | Fix for #4011, crash when two text nodes are appended in IE. | Dave Methvin | 2009-12-06 | 1 | -1/+3 | |
| | |