aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* jquery selector: removed needless check in jQuery.sibling.Ariel Flesler2008-05-021-1/+1
|
* core: make sure all source files end with a single blank line.Scott González2008-04-303-5/+2
|
* jquery core: extend() now supports deep + extending jquery itselfAriel Flesler2008-04-301-7/+9
| | | | cached some vars and it proved to be faster.
* mainly made the code shorter:Ariel Flesler2008-04-295-103/+105
| | | | | | | | | | | - removed some needless if's - replace multiple "var x" for one, comma separated declaration. - added a local fn called now() for the (new Date)s - fixed the indentation of a block, and a typo in a comment. - used fn instead of prototype where possible - jquery fx: exposed the speeds hash as jQuery.fx.speeds. Also fixed (again) line endings
* core: Adding missing radix for paresInt.Scott González2008-04-291-1/+1
|
* Fixed line endings.Scott González2008-04-291-451/+451
|
* jquery event: from #2249, adding $.event.proxy to link event handlers, and ↵Ariel Flesler2008-04-291-11/+22
| | | | | | implementing it on $.event.add, $.fn._toggle and $.fn.one. It also fixes a bug in $.fn.one that was unbinding ALL the existing handlers.
* jquery event: adding some whitespaces to the last change.Ariel Flesler2008-04-291-2/+2
|
* jquery event: jQuery.toggle can accept more than 2 functions, closes #2378Ariel Flesler2008-04-292-3/+3
|
* jquery core: in $.makeArray, improved array-like detection, Safari reports ↵Ariel Flesler2008-04-291-1/+1
| | | | nodelists as 'function', so I got back to attribute sniffing.
* Merged dimensions with coreBrandon Aaron2008-04-292-24/+89
|
* jQuery.event.fix performance boost. An example: click event was previously ↵Brandon Aaron2008-04-281-10/+16
| | | | ~3ms and is now < 1ms. jQuery.event.trigger also got another small boost in performance.
* jquery core: fix for #1960, delegating to document.getElementsByName for ↵Jörn Zaefferer2008-04-281-445/+451
| | | | [name=...] selectors (not in combination with :not)
* Prevent a single event object from being fixed more than onceBrandon Aaron2008-04-271-1/+7
|
* Optimization for jQuery.event.fix ... don't send fake event through ↵Brandon Aaron2008-04-271-1/+1
| | | | jQuery.event.fix
* jquery core: fixed makeArray to recognize the window (has length)Ariel Flesler2008-04-251-4/+6
| | | | test runner: updated the tests for makeArray
* jquery core: simplified the code using the new jQuery.makeArray from [5314] ↵Ariel Flesler2008-04-243-14/+4
| | | | where possible.
* jquery core: Patch from #2619 applied, making makeArray more flexible and ↵Jörn Zaefferer2008-04-241-6/+7
| | | | faster; removed hint to ticket from (previously failing) test
* Fixed regression with 5276 where return false in first handler of multiple ↵Brandon Aaron2008-04-231-7/+10
| | | | handlers was ignored. And 5276 log message says 200% but I meant 20%.
* jquery.ajax: fix for beforeSend-cancelling-sideeffectsJörn Zaefferer2008-04-221-1/+6
|
* jquery.ajax: improvement for #2688, added testJörn Zaefferer2008-04-221-5/+2
|
* jquery.event: Patch for #2708Jörn Zaefferer2008-04-221-0/+3
|
* Some small optimizations to the event module. jQuery.event.trigger over 200% ↵Brandon Aaron2008-04-221-33/+25
| | | | faster in IE and less code. Thanks in large to Ariel Flesler.
* Small optimization to offset (thanks Ariel Flesler)Brandon Aaron2008-04-211-6/+7
|
* Small optimization to jQuery.curCSS (thanks Ariel Flesler)Brandon Aaron2008-04-211-7/+10
|
* Trigger onclick handlers of linksBrandon Aaron2008-04-211-2/+2
|
* Closes #2688Yehuda Katz2008-04-141-1/+4
|
* $.extend deep now copies children's children, ect...Sean Catchpole2008-04-081-1/+1
|
* Made outerHeight/outerWidth accept .outerWidth(true) to include the margin. ↵John Resig2008-03-151-6/+3
| | | | If any options are passed in it's assumed that you want the margin included.
* Imported the innerHeight and outerHeight methods from the Dimensions plugin.John Resig2008-03-151-0/+32
|
* Fixed issue with typeof check - "array" isn't a valid type.John Resig2008-02-171-1/+1
|
* Landed a fix for bug #2037.John Resig2008-02-061-3/+3
|
* Landed a minor fix for AIR (in the offset method).John Resig2008-02-061-1/+1
|
* 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)