aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/event.js
Commit message (Collapse)AuthorAgeFilesLines
...
* Added support for bubbling triggered events.John Resig2008-12-221-1/+35
|
* Added support for multiple-namespaced events (in bind, trigger, and unbind).John Resig2008-12-191-0/+54
|
* core: tests cleanup for compability with qunit updates: stop() now actually ↵Jörn Zaefferer2008-10-241-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 Flesler2008-10-211-1/+2
|
* test runner: the changes are:Ariel Flesler2008-05-281-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 Flesler2008-05-081-3/+7
|
* test runner: translated all the ok() with '==' to equals(), as it gives more ↵Ariel Flesler2008-05-061-18/+18
| | | | information on failures.
* test runner: adding a test case for $.fn._toggle with more than 2 functions.Ariel Flesler2008-04-291-2/+32
|
* jquery.event: Patch for #2708Jörn Zaefferer2008-04-221-1/+9
|
* Trigger onclick handlers of linksBrandon Aaron2008-04-211-1/+8
|
* Added support for .unbind(".test") to unbind all namespaced events on an ↵John Resig2008-02-031-0/+10
| | | | element.
* fix for #2114; refactored tests for bind() to highlight failing ↵Jörn Zaefferer2008-01-141-16/+26
| | | | select-change-test
* Fixed #2027 - make sure that cloned elements (within appendTo, etc.) have ↵John Resig2007-12-201-1/+6
| | | | their events cloned by default.
* Fixed a problem in the unit tests for IE where an optimization made the test ↵David Serduke2007-12-201-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 #2069Jörn Zaefferer2007-12-171-0/+8
|
* new special events api, ready is now a first class event that you can use ↵Brandon Aaron2007-12-151-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 Aaron2007-12-081-1/+11
| | | | hidden input.
* Fixed #1039 and #1733 by going through the core API and making them text ↵David Serduke2007-12-071-1/+6
| | | | node and comment node safe.
* Fixed [1993] although it actually wasn't a bug in the core but rather a ↵David Serduke2007-12-031-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 Serduke2007-11-281-2/+6
|
* Fixed an issue with the suite expecting a different result for the changed ↵John Resig2007-09-151-3/+3
| | | | triggerHandler behavior.
* Landing the new expando management code. Completely overhauls how data is ↵John Resig2007-09-081-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 Resig2007-09-081-0/+194