Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed .unbind('.namespace'). | Scott González | 2008-02-05 | 1 | -1/+1 |
| | |||||
* | You can now overwrite values returned from .data() with .bind("getData") - ↵ | John Resig | 2008-02-03 | 1 | -7/+10 |
| | | | | returning a value will override any bound value on that element. | ||||
* | Tweaked the .data() event triggering - it now triggers a single 'setData' ↵ | John Resig | 2008-02-03 | 1 | -2/+4 |
| | | | | event, passing in a key value pair of what was changed. | ||||
* | Added support for .unbind(".test") to unbind all namespaced events on an ↵ | John Resig | 2008-02-03 | 1 | -2/+2 |
| | | | | element. | ||||
* | Added $().data(), $().removeData(), and .bind("click!"). .data() and ↵ | John Resig | 2008-02-03 | 2 | -1/+28 |
| | | | | .removeData() handle namespaced data, .data() triggers a "set-KEY" event on all modified elements, and .bind("click!") only triggers a click (and no namespaced events). | ||||
* | Updated the years on the licensing. | John Resig | 2008-02-01 | 1 | -1/+1 |
| | |||||
* | De-eval'd selectors and the various DOM methods (will marginally help our ↵ | John Resig | 2008-01-26 | 2 | -57/+52 |
| | | | | speed and make us more compatible with projects like Caja and Adobe AIR). Left a selector eval in for backwards compatibility support of selector plugins. | ||||
* | Fix #2184 by using the jQuery.clean() function instead of a direct innerHTML ↵ | David Serduke | 2008-01-23 | 1 | -4/+2 |
| | | | | assignment in the clone() function for IE. | ||||
* | Fixed #2174 by removing the s.dataType == "json" check for possible cross ↵ | David Serduke | 2008-01-17 | 1 | -1/+1 |
| | | | | domain since it causes absolute urls to use a <script> tag ajax retrieval even though absolute urls work fine for retrieving local data. Cross-domain jsonp will still work since the $.ajax() function actually changes the s.dataType to "script" before it reaches this check in cases where it is s.dataType == "jsonp" or s.dataType == "json" and a parameter has =? in it. | ||||
* | Changing end of line from CRLF to just LF like the rest of the source files. | David Serduke | 2008-01-14 | 1 | -1350/+1350 |
| | |||||
* | Added support for breaking in an object loop (Bug #2111). | John Resig | 2008-01-14 | 1 | -6/+8 |
| | |||||
* | And the rest of the _default change. | John Resig | 2008-01-14 | 1 | -1/+1 |
| | |||||
* | Tweaked the default Accept header to _default. | John Resig | 2008-01-14 | 1 | -1/+1 |
| | |||||
* | Added a check to make sure that .style exists before trying to access it ↵ | John Resig | 2008-01-14 | 1 | -1/+1 |
| | | | | (Bug #2105). | ||||
* | Fixed default property name for Opera (bug #2159). | John Resig | 2008-01-14 | 1 | -1/+1 |
| | |||||
* | Added a fix for bug #2140. Opera doesn't like concating null or undefined ↵ | John Resig | 2008-01-14 | 1 | -1/+1 |
| | | | | values. | ||||
* | 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 |
| |