aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Tagging the 1.4.2 release.jeresig2010-02-131-1/+1
|
* No need to run trim on every class iteration in addClass, thanks for the ↵jeresig2010-02-132-3/+8
| | | | heads-up Leeoniya.
* Adapt the nbsp entity test for Opera (output isn't as important as the fact ↵jeresig2010-02-131-1/+2
| | | | that it's getting converted.
* Found a better detect for deleting an expando, added back in removeAttribute ↵jeresig2010-02-133-12/+17
| | | | as it does work in IE.
* Clean up expando removal code - only try to delete the expando from an ↵jeresig2010-02-133-29/+19
| | | | element if it's possible.
* Make sure that elements that have been removed also have their special ↵jeresig2010-02-133-5/+26
| | | | events cleaned up. Fixes #6084.
* Make sure that mousing over XUL elements results in no trigger of a ↵jeresig2010-02-131-16/+13
| | | | mouseleave. Fixes #6013.
* Make sure that live focus and blur events also bind to the regular events, ↵jeresig2010-02-132-2/+17
| | | | to handle triggered events. Fixes #6055.
* When binding a change directly to a file input just passthrough to the ↵jeresig2010-02-132-0/+13
| | | | normal bind. A temporary fix for #5997, needs more investigation.
* Don't inject style elements using innerHTML as they will go away in IE. ↵jeresig2010-02-132-2/+7
| | | | Fixes #5977.
* Added some tests to test repeated injected of scripts. Was fixed when fixing ↵jeresig2010-02-131-5/+4
| | | | #5094.
* Make sure that we don't try to use a detached node (that was in a fragment) ↵jeresig2010-02-133-2/+14
| | | | as a fragment in IE. Fixes #5829.
* Make sure the fragment isn't used if it's not the same set we're working ↵jeresig2010-02-132-6/+15
| | | | with. Fixes #6068.
* Rename internal .getText to maintain parity between it and the primary ↵jeresig2010-02-132-2/+2
| | | | .text(). Fixes #6094.
* If .attr() is run on no elements undefined should be returned (as should be ↵jeresig2010-02-132-2/+5
| | | | the case when no attribute is found). Fixes #6012.
* Make sure that no extra whitespace is leftover after an addClass. Fixes #6050.jeresig2010-02-132-2/+11
|
* Make sure leading whitespace is trimmed for parseJSON. Fixes #6031.jeresig2010-02-132-2/+7
|
* Make sure that fragments containing options aren't cached.jeresig2010-02-131-1/+1
|
* Remove the need for the internal setArray method, it was only really used by ↵jeresig2010-02-131-13/+8
| | | | pushStack anyway. Fixes #6003.
* Make sure that there are some live events before continuing on.jeresig2010-02-121-1/+1
|
* Make sure that live mouseenter/mouseleave work properly. Fixes #6077.jeresig2010-02-111-8/+16
|
* Make sure that the teardown is called after all the handlers of a type are ↵John Resig2010-02-112-3/+7
| | | | removed. Fixes #6065.
* No reason to expose the temporary _load method.John Resig2010-02-111-5/+5
|
* Ignore potential error codes from Github in doing a clone. Fixes #6049.Iraê Carvalho2010-02-101-2/+2
|
* Simplify the special change/submit event removal logic, per Scott's ↵jeresig2010-02-101-5/+2
| | | | suggestion in 5267824aa36f0fcecb944a4daf0b99d6e01460fd.
* Updated formatting for the change/submit special event logic. Also switched ↵jeresig2010-02-081-83/+84
| | | | the function declarations to statements. Thanks to Garrett for the recommendation.
* Merge branch 'master' of github.com:jquery/jqueryjeresig2010-02-083-4/+4
|\
| * Ok, this should actually fix #6041 :)Ben Alman2010-02-062-3/+3
| |
| * spelling mistake (insead)tomviner2010-02-061-1/+1
| |
* | Fix in logic for handling exclusive namespace testing. Fixes #6048.jeresig2010-02-081-2/+2
|/
* Make sure that &#...; entities are encoded properly. Fixes #6042.jeresig2010-02-052-2/+5
|
* Make sure that we don't try to double-encode params using the traditional ↵jeresig2010-02-052-3/+5
| | | | style. Fixes #6041.
* Update special events to work with the internal event system changes. Also ↵jeresig2010-02-051-15/+17
| | | | fixes #5967.
* Add in a test for testing the performance of event handling.jeresig2010-02-041-0/+58
|
* Update benchmark basis file to jQuery 1.3.2.jeresig2010-02-041-1294/+2121
|
* Reformat benchamrk function.jeresig2010-02-041-1/+9
|
* Rewrote the live event handling to use the new event logic. Also added in ↵jeresig2010-02-042-91/+152
| | | | support for live namespaced events. Fixes #5945.
* Added some more tests for checking the execution order of events (from last ↵jeresig2010-02-041-0/+20
| | | | night's changes - routes around Chrome's busted object looping abilities).
* Forgot to land Justin's tests for the event fixes.Justin Meyer2010-02-041-0/+18
|
* A large refactor of the event handling logic. Data and namespace information ↵jeresig2010-02-042-151/+145
| | | | is maintained in a separate object now, no longer on the event handler. Proxy functions are no longer needed, as a result. Additionally execution order of the handlers is maintained, fixing #4261, and the execution of handlers is maintained even while they're being removed. Live events will be refactored separately.
* Removed extraneous nodeName check from ↵jeresig2010-02-011-1/+1
| | | | f95147f465932cb91e1a6aace50c556820ca4074 commit.
* Adding in some more replaceWith tests for #5917.Neeraj Singh2010-02-011-1/+11
|
* Only detach the incoming elements to replaceWith if they're DOM nodes. Fixes ↵Noah Sloan2010-02-012-6/+13
| | | | #5986.
* Make sure the resulting className from removeClass is nicely trimmed. Fixes ↵jeresig2010-02-012-2/+13
| | | | #5988.
* Fix for problem in IE 8 where deserialized (then reserialized) form markup ↵jeresig2010-02-012-2/+12
| | | | was getting malformed. Thanks IE. Fixes #5998.
* Same problem happens with plain embed elements as well. Follow-up fix to #5904.jeresig2010-02-011-4/+4
|
* Make sure that injection of object elements continues to work in IE 6. ↵jeresig2010-02-011-2/+4
| | | | Really hard to unit test this in a meanigful manner (the result is a visually broken plugin). Will need to be diligent about watching for this in the future. Fixes #5094.
* Add .delegate() and .undelegate(). An alternative to using .live() which ↵jeresig2010-02-012-38/+433
| | | | goes from a single root and filters by the specified selectors. Should be used like do: .delegate(td, hover, someFn);. Fixes #6005.
* The context for 'body' should still be document, in this case.jeresig2010-01-291-1/+2
|
* Make sure fragment caching is only happening on nodes in the main document. ↵jeresig2010-01-291-4/+8
| | | | Fixes #5978.