Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Just added support for Accept headers in Ajax requests - defaults to the ↵ | John Resig | 2008-01-14 | 1 | -1/+14 | |
| | | | | correct header depending on the type of request that's being performmed. (Bug #1986) | |||||
* | reverted change for #2114 | Jörn Zaefferer | 2008-01-14 | 1 | -2/+2 | |
| | ||||||
* | fix for #2114; refactored tests for bind() to highlight failing ↵ | Jörn Zaefferer | 2008-01-14 | 1 | -1348/+1348 | |
| | | | | select-change-test | |||||
* | Tweaked comment for isFunction. | John Resig | 2008-01-12 | 1 | -2/+1 | |
| | ||||||
* | Fixed an edge case in show() where the css says the display should be none. ↵ | David Serduke | 2008-01-12 | 1 | -0/+3 | |
| | | | | In that case force 'block' so it will actually show. | |||||
* | Adds support for username and password to $.ajax | Yehuda Katz | 2008-01-07 | 1 | -2/+4 | |
| | ||||||
* | Fixes bug with charCode, bad 'var' and missing semicolon | Yehuda Katz | 2007-12-28 | 1 | -3/+3 | |
| | ||||||
* | Fixed #2084 by added embed to the list of elements where it is ok to have ↵ | David Serduke | 2007-12-21 | 1 | -1/+1 | |
| | | | | self closing xhtml. | |||||
* | Fixed memory leak in IE with non-native event types | Brandon Aaron | 2007-12-21 | 1 | -1/+10 | |
| | ||||||
* | Removed check to prevent event from being fixed twice. Unfortunately, in IE ↵ | Brandon Aaron | 2007-12-21 | 1 | -7/+0 | |
| | | | | this is sometimes necessary with its global event object. Binding both a mousedown and mousemove event is an example. | |||||
* | Fixed a couple problems found in the test suite. First, IE doesn't like it ↵ | David Serduke | 2007-12-20 | 1 | -0/+2 | |
| | | | | when text nodes were trying to duplicate their events in clone, so don't do text nodes (that shouldn't have events anyway). Also the fx module was freezing from a recent update that wasn't quite finished. | |||||
* | Fixing #2081 | Brandon Aaron | 2007-12-20 | 1 | -1/+1 | |
| | ||||||
* | Fixed #2080 by removing the check for nodeType != 1. It was put in to limit ↵ | David Serduke | 2007-12-20 | 1 | -3/+0 | |
| | | | | the queuing to just dom objects (ie not text nodes and comment nodes), but the queuing functionality is being used more broadly than I realized so the check is now removed. | |||||
* | Fixed #2027 - make sure that cloned elements (within appendTo, etc.) have ↵ | John Resig | 2007-12-20 | 1 | -1/+1 | |
| | | | | their events cloned by default. | |||||
* | Changed the $(document).ready() code to try and solve some problems in ↵ | David Serduke | 2007-12-20 | 1 | -8/+39 | |
| | | | | Safari, Opera, and IE. | |||||
* | offset: make sure there is a parent node to work on while calculating scroll ↵ | Brandon Aaron | 2007-12-19 | 1 | -1/+1 | |
| | | | | offsets (#2073) | |||||
* | offset: make sure border width always gets calculated in pixels | Brandon Aaron | 2007-12-19 | 1 | -1/+1 | |
| | ||||||
* | Fixed #2077 by adding a var to make it a local variable instead of ↵ | David Serduke | 2007-12-19 | 1 | -1/+2 | |
| | | | | initializing a global one. | |||||
* | Short-circuit jQuery.event.fix if it has already fixed the current event object. | Brandon Aaron | 2007-12-19 | 1 | -0/+7 | |
| | ||||||
* | Insure width/height do not return a negative number. | Brandon Aaron | 2007-12-19 | 1 | -1/+1 | |
| | ||||||
* | Second part of the fix for #2071. An empty string "" was being sent to ↵ | David Serduke | 2007-12-19 | 1 | -1/+1 | |
| | | | | .bind() and when the events were being cleared it went in to an infinite recursive loop till memory was out. The test was !types in the function and changing it to types == undefined fixed the error. | |||||
* | Changed CRLF end of lines to just LF. Other than that there were no changes ↵ | David Serduke | 2007-12-19 | 1 | -536/+536 | |
| | | | | in this commit. Try svn diff -x --ignore-eol-style -r 4224:4225 to see that. | |||||
* | Fixed #2076 where .val() could return an array instead of undefined when the ↵ | David Serduke | 2007-12-18 | 1 | -0/+1 | |
| | | | | jquery object was empty. The bug was created during the .val() refactoring for the javascript strict FF ticket. | |||||
* | width and height methods are now working properly | Brandon Aaron | 2007-12-18 | 1 | -7/+13 | |
| | ||||||
* | Fixed #1887 - trigger fails if extra is not a function | Richard Worth | 2007-12-18 | 1 | -536/+536 | |
| | ||||||
* | Fixed #2070 by adding a test for !nodeType to isArrayLike so DOM elements ↵ | David Serduke | 2007-12-17 | 1 | -4/+2 | |
| | | | | like SELECT are not considered array-like (even though they really are). | |||||
* | Fixed #2069. The ready helper and shortcuts act the same. You can also still ↵ | Brandon Aaron | 2007-12-17 | 1 | -40/+78 | |
| | | | | bind, unbind and trigger the ready event on the document element but doing so follows the events API unlike the ready helper method. | |||||
* | Fixed #2062 by adding a check to see if the selector is array-like in .not() ↵ | David Serduke | 2007-12-17 | 1 | -1/+4 | |
| | | | | before testing it as an array. Otherwise it does a straight comparison during the filter test. | |||||
* | Fixed #2064 | Brandon Aaron | 2007-12-17 | 1 | -1/+1 | |
| | ||||||
* | Fixed #2037 where Opera would mis-state the value of 'display' after an ↵ | David Serduke | 2007-12-17 | 1 | -0/+6 | |
| | | | | innerHTML was done in some cases. | |||||
* | Added code to remove the script tag on successful jsonp calls. | David Serduke | 2007-12-17 | 1 | -0/+2 | |
| | ||||||
* | The extra & was getting gobbled, oops. | John Resig | 2007-12-17 | 1 | -2/+2 | |
| | ||||||
* | Added a fix for bug #2020 - if you want to do data: {callback: "?"}, do ↵ | John Resig | 2007-12-17 | 1 | -1/+1 | |
| | | | | jsonp: "callback" instead. | |||||
* | Cleaned up mouseenter and mouseleave special events | Brandon Aaron | 2007-12-16 | 1 | -20/+12 | |
| | ||||||
* | Changed window.frameElement to window == top because of some access denied ↵ | David Serduke | 2007-12-16 | 1 | -1/+1 | |
| | | | | errors when the iframe wasn't same origin. | |||||
* | Added code so an iframe in IE won't count on doScroll to determine if the ↵ | David Serduke | 2007-12-16 | 1 | -1/+1 | |
| | | | | dom is ready. We will probably have to do more investigation on a better (and consistant) method for inside an iframe in IE. | |||||
* | Renaming variables to be more consistent | Brandon Aaron | 2007-12-16 | 1 | -37/+37 | |
| | ||||||
* | Fixed #1781 for warnings created on load by FF javascript.options.strict == ↵ | David Serduke | 2007-12-16 | 5 | -36/+43 | |
| | | | | true. | |||||
* | Added feature #1934 by allowing script.charset to be set through an optional ↵ | David Serduke | 2007-12-15 | 1 | -0/+2 | |
| | | | | 'scriptCharset' ajax option. | |||||
* | new special events api, ready is now a first class event that you can use ↵ | Brandon Aaron | 2007-12-15 | 1 | -170/+193 | |
| | | | | bind, unbind or the ready helper, two new events: mouseenter and mouseleave, the hover helper method now uses mouseenter and mouseleave, bind and unbind can now take a space sperated list of event types | |||||
* | Fixed #2046 by forcing the dataType to 'html' in the .load() function. | David Serduke | 2007-12-14 | 1 | -0/+1 | |
| | ||||||
* | Added an extra try block to handle FF 3 x-domain requests. (Bug #1557) | John Resig | 2007-12-14 | 1 | -9/+12 | |
| | ||||||
* | Added some improvements to changes made in [4143] for #1854. | John Resig | 2007-12-13 | 2 | -14/+11 | |
| | ||||||
* | Fixed #1854 by using wizzud's suggestion. The only real difference is the ↵ | David Serduke | 2007-12-13 | 2 | -10/+20 | |
| | | | | code is only called when there is more than a single selector. So there should be no speed decrease in the current working cases. Only additional functionality for cases that used to fail. | |||||
* | Getting the width and height of the document now returns the correct value ↵ | Brandon Aaron | 2007-12-13 | 1 | -2/+5 | |
| | | | | in all browsers. It even works around the scrollWidth == offsetWidth bug in Firefox thanks to wizzud. | |||||
* | Fixed #1750 by adding a url that starts with "//" and is a dataType "script" ↵ | David Serduke | 2007-12-12 | 1 | -1/+1 | |
| | | | | will now use a cross domain load the same as urls that start with "http". | |||||
* | Added more unit tests for offset. Fixed an offset issue relating to table ↵ | Brandon Aaron | 2007-12-12 | 1 | -12/+8 | |
| | | | | header cells in Opera | |||||
* | Fixed a bug in clone where it wouldn't work on an XML node in IE. Also ↵ | David Serduke | 2007-12-12 | 1 | -1/+1 | |
| | | | | added unit test for it. | |||||
* | Fix #1987 by only doing remote <script> type ajax with GET requests. All ↵ | David Serduke | 2007-12-11 | 1 | -2/+2 | |
| | | | | other types will be passed on to XMLHttpRequest. | |||||
* | Greatly reduced the complexity of the width/height methods. This also fixes ↵ | Brandon Aaron | 2007-12-11 | 1 | -47/+14 | |
| | | | | #2009, #1870, #1796, #1843, #1839, #1818, #1613, #1415 and #1629 |