aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* jquery event: fixed $.fn.load, closes #2819.Ariel Flesler2008-05-081-2/+5
|
* jquery core: closes #2771Ariel Flesler2008-05-081-7/+6
| | | | | | $.inArray now makes a === check because of IE. $.inArray is used in $.fn.index, this is shorter, and breaks the loop when possible. $.fn.index can receive a jquery object, and the first element is used
* jquery event: removing 3 unnecessary lines since the addition of $.event.proxy.Ariel Flesler2008-05-081-3/+0
|
* test runner: making 2 tests more flexible because they yield a slightly ↵Ariel Flesler2008-05-081-2/+2
| | | | different result on Safari 3, but still acceptable.
* Making sure originalTarget gets copied over from the original event objectBrandon Aaron2008-05-071-1/+1
|
* ajax test: Removed test for extending with null.Scott González2008-05-071-6/+2
|
* test runner: extra test for makeArray, related to [5481]Ariel Flesler2008-05-071-3/+5
|
* jquery core: Reverting the changes added at [5480]Ariel Flesler2008-05-071-2/+2
|
* jquery core: makeArray was parsing forms into array of elements.Ariel Flesler2008-05-061-5/+5
|
* jquery core: removing needless 'else' and 'new' in $.fn.init.Ariel Flesler2008-05-061-13/+8
|
* jquery ajax: support for dynamic data arguments, see #2806; added ↵Jörn Zaefferer2008-05-063-1/+18
| | | | test/data/echoQuery.php for easier testing of sent query strings
* jquery testrunner: reset $.ajaxSettings after each run to prevent ↵Jörn Zaefferer2008-05-061-0/+2
| | | | sideeffects between tests
* test runner: translated all the ok() with '==' to equals(), as it gives more ↵Ariel Flesler2008-05-065-234/+234
| | | | information on failures.
* jquery core: enhancements to jquery.map, closes #2803Ariel Flesler2008-05-061-7/+3
|
* jquery core: small code reduction.Ariel Flesler2008-05-061-3/+3
|
* jquery core: code reduction at $.each and $.curCSS.Ariel Flesler2008-05-061-19/+21
|
* test runner: adding some tests that were missing for the $ constructor.Ariel Flesler2008-05-061-1/+10
|
* jquery selector: reverting [5343], check #1960.Ariel Flesler2008-05-061-22/+16
|
* jquery testrunner: reset global events after each run, speeds up a test run ↵Jörn Zaefferer2008-05-051-0/+1
| | | | for ajax from 16s to 10s (test/?ajax), kudos to Ariel
* core: Fixed #2605: .data() now accepts null as a value.Scott González2008-05-032-6/+11
|
* core: Fixed #2605: .data() now accepts null as a value.Scott González2008-05-032-2/+6
|
* core: Fixed #2600: jQuery.extend no longer skips over null properties.Scott González2008-05-022-3/+13
|
* jquery fx: adding jQuery.fx.def as default speed for animationsAriel Flesler2008-05-021-2/+3
|
* jquery selector: removed needless check in jQuery.sibling.Ariel Flesler2008-05-021-1/+1
|
* jQuery src: set svn:eol-style to nativeScott González2008-05-010-0/+0
|
* 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
|
* test runner: adding a test case for $.fn._toggle with more than 2 functions.Ariel Flesler2008-04-291-2/+32
|
* 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.
* test runner: voided the failing tests for jQuery.map, that belong to an ↵Ariel Flesler2008-04-291-1/+3
| | | | unapproved proposal(#2616).
* test runner: added another test for makeArray.Ariel Flesler2008-04-291-1/+3
|
* Merged dimensions with coreBrandon Aaron2008-04-296-25/+178
|
* 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)
* jquery core: tests for #2616Jörn Zaefferer2008-04-281-1593/+1619
|
* 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-252-9/+15
| | | | 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.
* - Adding the enhancements to the test runner, to accept multiple(and ↵Ariel Flesler2008-04-241-5/+23
| | | | negative) filters from the GET variables, as specified in the ticket #2738.
* jquery core: Patch from #2619 applied, making makeArray more flexible and ↵Jörn Zaefferer2008-04-242-7/+8
| | | | faster; removed hint to ticket from (previously failing) test
* testrunner: refactored url-test-filter, still regex basedJörn Zaefferer2008-04-241-2/+6
|
* 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%.
* - adding the tests for the changes to $.makeArray, proposed at #2619 Ariel Flesler2008-04-221-0/+27
|