Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Added support for bubbling triggered events. | John Resig | 2008-12-22 | 1 | -1/+35 | |
| | ||||||
* | Added support for multiple-namespaced events (in bind, trigger, and unbind). | John Resig | 2008-12-19 | 1 | -0/+54 | |
| | ||||||
* | core: tests cleanup for compability with qunit updates: stop() now actually ↵ | Jörn Zaefferer | 2008-10-24 | 1 | -1/+1 | |
| | | | | accepts an argument (ajax.js); selectors should be confined to fixture(event.js) | |||||
* | test runner: Commented 2 tests that jam the suite. | Ariel Flesler | 2008-10-21 | 1 | -1/+2 | |
| | ||||||
* | test runner: the changes are: | Ariel Flesler | 2008-05-28 | 1 | -49/+49 | |
| | | | | | | | - Replaced all the $ for jQuery in the tests and suite. - Added a noConflict to testrunner.js. - Modified the test for noConflict() so that it still work. - Added jQuery 1.2.1 and 1.2.3 to otherlibs. | |||||
* | test runner: extra test case, [5501] | Ariel Flesler | 2008-05-08 | 1 | -3/+7 | |
| | ||||||
* | test runner: translated all the ok() with '==' to equals(), as it gives more ↵ | Ariel Flesler | 2008-05-06 | 1 | -18/+18 | |
| | | | | information on failures. | |||||
* | test runner: adding a test case for $.fn._toggle with more than 2 functions. | Ariel Flesler | 2008-04-29 | 1 | -2/+32 | |
| | ||||||
* | jquery.event: Patch for #2708 | Jörn Zaefferer | 2008-04-22 | 1 | -1/+9 | |
| | ||||||
* | Trigger onclick handlers of links | Brandon Aaron | 2008-04-21 | 1 | -1/+8 | |
| | ||||||
* | Added support for .unbind(".test") to unbind all namespaced events on an ↵ | John Resig | 2008-02-03 | 1 | -0/+10 | |
| | | | | element. | |||||
* | fix for #2114; refactored tests for bind() to highlight failing ↵ | Jörn Zaefferer | 2008-01-14 | 1 | -16/+26 | |
| | | | | select-change-test | |||||
* | Fixed #2027 - make sure that cloned elements (within appendTo, etc.) have ↵ | John Resig | 2007-12-20 | 1 | -1/+6 | |
| | | | | their events cloned by default. | |||||
* | Fixed a problem in the unit tests for IE where an optimization made the test ↵ | David Serduke | 2007-12-20 | 1 | -1/+2 | |
| | | | | case not work. The optimization was fine. It was the unit test that was taking a short cut which caused it to fail after the optimization went in. | |||||
* | Test for #2069 | Jörn Zaefferer | 2007-12-17 | 1 | -0/+8 | |
| | ||||||
* | new special events api, ready is now a first class event that you can use ↵ | Brandon Aaron | 2007-12-15 | 1 | -3/+28 | |
| | | | | bind, unbind or the ready helper, two new events: mouseenter and mouseleave, the hover helper method now uses mouseenter and mouseleave, bind and unbind can now take a space sperated list of event types | |||||
* | Fix for #1486. Prevent IE from throwing an error when triggering focus on ↵ | Brandon Aaron | 2007-12-08 | 1 | -1/+11 | |
| | | | | hidden input. | |||||
* | Fixed #1039 and #1733 by going through the core API and making them text ↵ | David Serduke | 2007-12-07 | 1 | -1/+6 | |
| | | | | node and comment node safe. | |||||
* | Fixed [1993] although it actually wasn't a bug in the core but rather a ↵ | David Serduke | 2007-12-03 | 1 | -19/+46 | |
| | | | | | | | misunderstanding of how the extra function was supposed to work in jQuery.event.trigger(). That said, it seems more useful and robust for the code to work the way the ticket author thought it should work so this change was made. Now, if anything is returned from the extra function it will overwrite the return value of the event handlers. This should only effect custom events unless someone had an extra function that returned a value other than false which would have been ignored before. | |||||
* | Fixed #1701 by passing through the arguments as suggested. | David Serduke | 2007-11-28 | 1 | -2/+6 | |
| | ||||||
* | Fixed an issue with the suite expecting a different result for the changed ↵ | John Resig | 2007-09-15 | 1 | -3/+3 | |
| | | | | triggerHandler behavior. | |||||
* | Landing the new expando management code. Completely overhauls how data is ↵ | John Resig | 2007-09-08 | 1 | -4/+4 | |
| | | | | | | | | | | | | | | | | | | | | | | | associated with elements. Plugins will be most interested in: - jQuery.data(elem) -> Unique ID for the element - jQuery.data(elem, name) -> Named data store for the element - jQuery.data(elem, name, value) -> Saves a value to the named data store - jQuery.removeData(elem) -> Remove the expando and the complete data store - jQuery.removeData(elem, name) -> Removes just this one named data store jQuery's .remove() and .empty() automatically clean up after themselves. Once an element leaves a DOM document their events are no longer intact. Thus, statements like so: {{{ $("#foo").remove().appendTo("#bar"); }}} should be written like so: {{{ $("#foo").appendTo("#bar"); }}} in order to avoid losing the bound events. | |||||
* | Finished up some of the reorganization. | John Resig | 2007-09-08 | 1 | -0/+194 | |