aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Fixed .unbind('.namespace').Scott González2008-02-051-1/+1
|
* You can now overwrite values returned from .data() with .bind("getData") - ↵John Resig2008-02-031-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 Resig2008-02-031-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 Resig2008-02-031-2/+2
| | | | element.
* Added $().data(), $().removeData(), and .bind("click!"). .data() and ↵John Resig2008-02-032-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 Resig2008-02-011-1/+1
|
* De-eval'd selectors and the various DOM methods (will marginally help our ↵John Resig2008-01-262-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 Serduke2008-01-231-4/+2
| | | | assignment in the clone() function for IE.
* Fixed #2174 by removing the s.dataType == "json" check for possible cross ↵David Serduke2008-01-171-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 Serduke2008-01-141-1350/+1350
|
* Added support for breaking in an object loop (Bug #2111).John Resig2008-01-141-6/+8
|
* And the rest of the _default change.John Resig2008-01-141-1/+1
|
* Tweaked the default Accept header to _default.John Resig2008-01-141-1/+1
|
* Added a check to make sure that .style exists before trying to access it ↵John Resig2008-01-141-1/+1
| | | | (Bug #2105).
* Fixed default property name for Opera (bug #2159).John Resig2008-01-141-1/+1
|
* Added a fix for bug #2140. Opera doesn't like concating null or undefined ↵John Resig2008-01-141-1/+1
| | | | values.
* Just added support for Accept headers in Ajax requests - defaults to the ↵John Resig2008-01-141-1/+14
| | | | correct header depending on the type of request that's being performmed. (Bug #1986)
* reverted change for #2114Jörn Zaefferer2008-01-141-2/+2
|
* fix for #2114; refactored tests for bind() to highlight failing ↵Jörn Zaefferer2008-01-141-1348/+1348
| | | | select-change-test
* Tweaked comment for isFunction.John Resig2008-01-121-2/+1
|
* Fixed an edge case in show() where the css says the display should be none. ↵David Serduke2008-01-121-0/+3
| | | | In that case force 'block' so it will actually show.
* Adds support for username and password to $.ajaxYehuda Katz2008-01-071-2/+4
|
* Fixes bug with charCode, bad 'var' and missing semicolonYehuda Katz2007-12-281-3/+3
|
* Fixed #2084 by added embed to the list of elements where it is ok to have ↵David Serduke2007-12-211-1/+1
| | | | self closing xhtml.
* Fixed memory leak in IE with non-native event typesBrandon Aaron2007-12-211-1/+10
|
* Removed check to prevent event from being fixed twice. Unfortunately, in IE ↵Brandon Aaron2007-12-211-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 Serduke2007-12-201-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 #2081Brandon Aaron2007-12-201-1/+1
|
* Fixed #2080 by removing the check for nodeType != 1. It was put in to limit ↵David Serduke2007-12-201-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 Resig2007-12-201-1/+1
| | | | their events cloned by default.
* Changed the $(document).ready() code to try and solve some problems in ↵David Serduke2007-12-201-8/+39
| | | | Safari, Opera, and IE.
* offset: make sure there is a parent node to work on while calculating scroll ↵Brandon Aaron2007-12-191-1/+1
| | | | offsets (#2073)
* offset: make sure border width always gets calculated in pixelsBrandon Aaron2007-12-191-1/+1
|
* Fixed #2077 by adding a var to make it a local variable instead of ↵David Serduke2007-12-191-1/+2
| | | | initializing a global one.
* Short-circuit jQuery.event.fix if it has already fixed the current event object.Brandon Aaron2007-12-191-0/+7
|
* Insure width/height do not return a negative number.Brandon Aaron2007-12-191-1/+1
|
* Second part of the fix for #2071. An empty string "" was being sent to ↵David Serduke2007-12-191-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 Serduke2007-12-191-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 Serduke2007-12-181-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 properlyBrandon Aaron2007-12-181-7/+13
|
* Fixed #1887 - trigger fails if extra is not a functionRichard Worth2007-12-181-536/+536
|
* Fixed #2070 by adding a test for !nodeType to isArrayLike so DOM elements ↵David Serduke2007-12-171-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 Aaron2007-12-171-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 Serduke2007-12-171-1/+4
| | | | before testing it as an array. Otherwise it does a straight comparison during the filter test.
* Fixed #2064Brandon Aaron2007-12-171-1/+1
|
* Fixed #2037 where Opera would mis-state the value of 'display' after an ↵David Serduke2007-12-171-0/+6
| | | | innerHTML was done in some cases.
* Added code to remove the script tag on successful jsonp calls.David Serduke2007-12-171-0/+2
|
* The extra & was getting gobbled, oops.John Resig2007-12-171-2/+2
|
* Added a fix for bug #2020 - if you want to do data: {callback: "?"}, do ↵John Resig2007-12-171-1/+1
| | | | jsonp: "callback" instead.
* Cleaned up mouseenter and mouseleave special eventsBrandon Aaron2007-12-161-20/+12
|