Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | jquery event: fixed $.fn.load, closes #2819. | Ariel Flesler | 2008-05-08 | 1 | -2/+5 | |
| | ||||||
* | jquery core: closes #2771 | Ariel Flesler | 2008-05-08 | 1 | -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 Flesler | 2008-05-08 | 1 | -3/+0 | |
| | ||||||
* | test runner: making 2 tests more flexible because they yield a slightly ↵ | Ariel Flesler | 2008-05-08 | 1 | -2/+2 | |
| | | | | different result on Safari 3, but still acceptable. | |||||
* | Making sure originalTarget gets copied over from the original event object | Brandon Aaron | 2008-05-07 | 1 | -1/+1 | |
| | ||||||
* | ajax test: Removed test for extending with null. | Scott González | 2008-05-07 | 1 | -6/+2 | |
| | ||||||
* | test runner: extra test for makeArray, related to [5481] | Ariel Flesler | 2008-05-07 | 1 | -3/+5 | |
| | ||||||
* | jquery core: Reverting the changes added at [5480] | Ariel Flesler | 2008-05-07 | 1 | -2/+2 | |
| | ||||||
* | jquery core: makeArray was parsing forms into array of elements. | Ariel Flesler | 2008-05-06 | 1 | -5/+5 | |
| | ||||||
* | jquery core: removing needless 'else' and 'new' in $.fn.init. | Ariel Flesler | 2008-05-06 | 1 | -13/+8 | |
| | ||||||
* | jquery ajax: support for dynamic data arguments, see #2806; added ↵ | Jörn Zaefferer | 2008-05-06 | 3 | -1/+18 | |
| | | | | test/data/echoQuery.php for easier testing of sent query strings | |||||
* | jquery testrunner: reset $.ajaxSettings after each run to prevent ↵ | Jörn Zaefferer | 2008-05-06 | 1 | -0/+2 | |
| | | | | sideeffects between tests | |||||
* | test runner: translated all the ok() with '==' to equals(), as it gives more ↵ | Ariel Flesler | 2008-05-06 | 5 | -234/+234 | |
| | | | | information on failures. | |||||
* | jquery core: enhancements to jquery.map, closes #2803 | Ariel Flesler | 2008-05-06 | 1 | -7/+3 | |
| | ||||||
* | jquery core: small code reduction. | Ariel Flesler | 2008-05-06 | 1 | -3/+3 | |
| | ||||||
* | jquery core: code reduction at $.each and $.curCSS. | Ariel Flesler | 2008-05-06 | 1 | -19/+21 | |
| | ||||||
* | test runner: adding some tests that were missing for the $ constructor. | Ariel Flesler | 2008-05-06 | 1 | -1/+10 | |
| | ||||||
* | jquery selector: reverting [5343], check #1960. | Ariel Flesler | 2008-05-06 | 1 | -22/+16 | |
| | ||||||
* | jquery testrunner: reset global events after each run, speeds up a test run ↵ | Jörn Zaefferer | 2008-05-05 | 1 | -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ález | 2008-05-03 | 2 | -6/+11 | |
| | ||||||
* | core: Fixed #2605: .data() now accepts null as a value. | Scott González | 2008-05-03 | 2 | -2/+6 | |
| | ||||||
* | core: Fixed #2600: jQuery.extend no longer skips over null properties. | Scott González | 2008-05-02 | 2 | -3/+13 | |
| | ||||||
* | jquery fx: adding jQuery.fx.def as default speed for animations | Ariel Flesler | 2008-05-02 | 1 | -2/+3 | |
| | ||||||
* | jquery selector: removed needless check in jQuery.sibling. | Ariel Flesler | 2008-05-02 | 1 | -1/+1 | |
| | ||||||
* | jQuery src: set svn:eol-style to native | Scott González | 2008-05-01 | 0 | -0/+0 | |
| | ||||||
* | core: make sure all source files end with a single blank line. | Scott González | 2008-04-30 | 3 | -5/+2 | |
| | ||||||
* | jquery core: extend() now supports deep + extending jquery itself | Ariel Flesler | 2008-04-30 | 1 | -7/+9 | |
| | | | | cached some vars and it proved to be faster. | |||||
* | mainly made the code shorter: | Ariel Flesler | 2008-04-29 | 5 | -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ález | 2008-04-29 | 1 | -1/+1 | |
| | ||||||
* | Fixed line endings. | Scott González | 2008-04-29 | 1 | -451/+451 | |
| | ||||||
* | test runner: adding a test case for $.fn._toggle with more than 2 functions. | Ariel Flesler | 2008-04-29 | 1 | -2/+32 | |
| | ||||||
* | jquery event: from #2249, adding $.event.proxy to link event handlers, and ↵ | Ariel Flesler | 2008-04-29 | 1 | -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 Flesler | 2008-04-29 | 1 | -2/+2 | |
| | ||||||
* | jquery event: jQuery.toggle can accept more than 2 functions, closes #2378 | Ariel Flesler | 2008-04-29 | 2 | -3/+3 | |
| | ||||||
* | jquery core: in $.makeArray, improved array-like detection, Safari reports ↵ | Ariel Flesler | 2008-04-29 | 1 | -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 Flesler | 2008-04-29 | 1 | -1/+3 | |
| | | | | unapproved proposal(#2616). | |||||
* | test runner: added another test for makeArray. | Ariel Flesler | 2008-04-29 | 1 | -1/+3 | |
| | ||||||
* | Merged dimensions with core | Brandon Aaron | 2008-04-29 | 6 | -25/+178 | |
| | ||||||
* | jQuery.event.fix performance boost. An example: click event was previously ↵ | Brandon Aaron | 2008-04-28 | 1 | -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 Zaefferer | 2008-04-28 | 1 | -445/+451 | |
| | | | | [name=...] selectors (not in combination with :not) | |||||
* | jquery core: tests for #2616 | Jörn Zaefferer | 2008-04-28 | 1 | -1593/+1619 | |
| | ||||||
* | Prevent a single event object from being fixed more than once | Brandon Aaron | 2008-04-27 | 1 | -1/+7 | |
| | ||||||
* | Optimization for jQuery.event.fix ... don't send fake event through ↵ | Brandon Aaron | 2008-04-27 | 1 | -1/+1 | |
| | | | | jQuery.event.fix | |||||
* | jquery core: fixed makeArray to recognize the window (has length) | Ariel Flesler | 2008-04-25 | 2 | -9/+15 | |
| | | | | test runner: updated the tests for makeArray | |||||
* | jquery core: simplified the code using the new jQuery.makeArray from [5314] ↵ | Ariel Flesler | 2008-04-24 | 3 | -14/+4 | |
| | | | | where possible. | |||||
* | - Adding the enhancements to the test runner, to accept multiple(and ↵ | Ariel Flesler | 2008-04-24 | 1 | -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 Zaefferer | 2008-04-24 | 2 | -7/+8 | |
| | | | | faster; removed hint to ticket from (previously failing) test | |||||
* | testrunner: refactored url-test-filter, still regex based | Jörn Zaefferer | 2008-04-24 | 1 | -2/+6 | |
| | ||||||
* | Fixed regression with 5276 where return false in first handler of multiple ↵ | Brandon Aaron | 2008-04-23 | 1 | -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 Flesler | 2008-04-22 | 1 | -0/+27 | |
| |